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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f5f2;
  color: #1f1b20;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 245, 242, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7dbe2;
}

.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: #7c6e76;
  display: block;
  margin-bottom: 4px;
}

.brand-text h1 {
  font-size: 26px;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  color: #3b3237;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #56b8bc;
}

.hero {
  min-height: 80vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}

.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #7c6e76;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 580px;
  font-size: 18px;
  color: #5d5258;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #1f1b20;
  color: #ffffff;
}

.btn-light {
  background: #efc5df;
  color: #1f1b20;
  border-color: #efc5df;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
}

.gallery-area {
  padding: 40px 0 90px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h3 {
  font-size: 40px;
}

.section-text {
  max-width: 420px;
  color: #5d5258;
}

.gallery-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.gallery-nav-link {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #eadde5;
  color: #1f1b20;
  font-weight: 700;
  transition: 0.25s ease;
}

.gallery-nav-link:hover {
  background: #efc5df;
  border-color: #efc5df;
  transform: translateY(-2px);
}

.gallery-nav-link.active {
  background: #56b8bc;
  border-color: #56b8bc;
  color: #ffffff;
}

.gallery-section {
  margin-top: 56px;
  scroll-margin-top: 120px;
}

.gallery-category-title {
  font-size: 30px;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 6px solid #56b8bc;
}

.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #56b8bc;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.slider-btn:hover {
  transform: scale(1.05);
  background: #429da1;
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.card {
  background: #ffffff;
  border: 1px solid #eadde5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 12px;
}

.card-top h5 {
  font-size: 22px;
  margin-bottom: 4px;
}

.card-content p {
  color: #5d5258;
  font-size: 15px;
}

.tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: #f6edf3;
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 90px 0;
  align-items: stretch;
}

.about-box,
.artist-photo-box {
  background: #ffffff;
  border: 1px solid #eadde5;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.04);
}

.about-box h3 {
  font-size: 32px;
  margin: 12px 0 16px;
}

.about-box p {
  color: #5d5258;
}

.artist-photo-box {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.artist-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.contact-box {
  background: #56b8bc;
  color: #1f1b20;
  border-radius: 34px;
  padding: 48px;
}

.contact-box-single {
  display: block;
}

.contact-box h3 {
  font-size: 38px;
}

.contact-eyebrow {
  color: #174447;
}

.contact-text {
  margin-top: 14px;
  max-width: 720px;
  color: #17383b;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #1f1b20;
  font-weight: 700;
  transition: 0.25s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: #f6edf3;
}

.social-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.btn-contact {
  background: #ffffff;
  color: #1f1b20;
}

.btn-contact:hover {
  background: #f6edf3;
}

.site-footer {
  padding: 30px 0 40px;
  text-align: center;
  color: #7c6e76;
  font-size: 14px;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 3000;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 920px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
}

.modal-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #111;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 30px;
  }

  .hero-art {
    order: -1;
  }

  .hero-logo {
    max-width: 260px;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .slider-track {
    grid-auto-columns: calc(50% - 12px);
  }

  .artist-photo {
    max-height: 420px;
  }
}

@media (max-width: 700px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand-text h1 {
    font-size: 22px;
  }

  .hero {
    padding: 56px 0;
  }

  .hero-logo {
    max-width: 210px;
  }

  .slider-track {
    grid-auto-columns: 100%;
  }

  .slider-wrap {
    gap: 8px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }

  .about-grid {
    padding: 70px 0;
  }

  .about-box,
  .artist-photo-box {
    padding: 24px;
  }

  .artist-photo-box {
    padding: 14px;
  }

  .artist-photo {
    max-height: 340px;
  }

  .contact-box {
    padding: 34px 24px;
  }

  .contact-box h3 {
    font-size: 30px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}