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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #f6f8fc;
  font-family: "Georgia", serif;
  line-height: 1.6;
  color: #0e0e0e;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: "Georgia", serif;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

h2 {
  font-size: 2.2rem;
}

p {
  font-size: 20px;
}

.heading {
  font-weight: bold;
}

section {
  padding: 40px 0;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1 {
  text-align: center;
  margin-bottom: 50px;
}

.btn, .btn-ghost, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 100%;
  max-width: 300px;
  padding: 1rem 1.75rem;
  font-family: "Georgia", serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #002350;
  color: #002350;
}
.btn:hover, .btn-ghost:hover, .btn-primary:hover, .btn:focus-visible, .btn-ghost:focus-visible, .btn-primary:focus-visible {
  background-color: #002350;
  color: #ffffff;
}

.btn-ghost {
  margin-top: 50px;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background-color: #ffffff;
  color: #05469b;
}

.floating-contact {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background-color: #002350;
  border: solid;
  border-width: 1px;
  border-color: white;
  color: #ffffff;
  font-family: "Georgia", serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background-color: #05469b;
  transform: translateY(-3px);
}

.site-header {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
  color: #ffffff;
  z-index: 1000;
}

.header-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/1hav-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  align-items: flex-start;
  text-align: left;
}

.logo-name {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin: 0 0 0.15rem;
  font-family: "Georgia", serif;
  font-weight: 500;
  text-align: left;
}

.logo-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.8;
  margin: 0;
  text-align: left;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.nav-list a:hover, .nav-list a:focus-visible {
  opacity: 0.6;
}
.nav-list a[aria-current=page] {
  border-bottom: 1px solid currentColor;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.burger span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  padding: 4rem 0;
  background-color: #ffffff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image img {
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.info-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 0;
}

.info-item {
  font-family: "Georgia", serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #0e0e0e;
  margin: 0;
}

.hero-description {
  max-width: 420px;
  text-align: center;
}

.banner {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 50px;
  background-image: url(../img/8T.webp);
  background-size: cover;
  background-position: center;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.banner-title {
  position: relative;
  z-index: 1;
  font-family: "Georgia", serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 0;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.video-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.video-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  padding: 0 2rem;
}

.video-banner-title {
  font-family: "Georgia", serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.video-banner-text {
  font-family: "Georgia", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.selected-works {
  padding: 5rem 0;
  background-image: url(../img/1hav-bg.webp);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.selected-works h2 {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.gallery-free,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  margin-bottom: 3rem;
  padding: 20px;
  background-color: #ffffff;
}

.gallery-free {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid1 {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  margin-bottom: 3rem;
  padding: 20px;
  background-color: transparent;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  padding: 20px;
  background-color: #ffffff;
}
.gallery .gallery-text {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  align-items: center;
}
.gallery h2 {
  text-align: center;
}
.gallery > p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}
.gallery-item p {
  margin: 0.3rem 0 0;
}

.gallery-item img {
  width: 90%;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: zoom-in;
}
.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.section-cta {
  text-align: center;
}

.series-nav {
  padding: 3rem 0 1rem;
  background-color: #f6f8fc;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

.series-nav .h3 {
  display: flex;
  align-self: center;
  justify-content: center;
}

.series-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.series-nav-item {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: none;
  text-decoration: none;
  text-align: center;
}

.series-nav-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.series-nav-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.series-nav-title {
  position: absolute;
  left: 0;
  right: 0;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 20px;
  text-align: center;
  bottom: 1rem;
  z-index: 1;
  color: #ffffff;
  font-family: "Georgia", serif;
  font-size: clamp(1.2rem, 3vw + 0.5rem, 1.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.series-nav-item:hover img,
.series-nav-item:focus-visible img {
  transform: scale(1.06);
}

.about-slider {
  position: relative;
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #dddddd;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.slider-slide {
  flex: 0 0 100%;
  height: 100%;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: #002350;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: #ffffff;
}

.slider-prev {
  left: 0.75rem;
}

.slider-next {
  right: 0.75rem;
}

.slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.slider-dot.active {
  background: #ffffff;
}

.about {
  padding: 5rem 0;
}

.about-title {
  text-align: center;
  margin-bottom: 2rem;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 1rem;
}

.btn-some {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.about-image {
  justify-content: center;
  margin-bottom: 2rem;
  float: left;
  margin-right: 30px;
  margin-bottom: 20px;
}

.about-content::after {
  content: " ";
  display: table;
  clear: both;
}

.about-image img {
  width: 100%;
  min-width: 220px;
  max-width: 300px;
  height: auto;
  border-radius: 4px;
}

.exhibitions {
  padding: 5rem 0;
  text-align: center;
  background-color: #ffffff;
}

.exhibitions h2 {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}

.exhibitions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.exhibitions-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.exhibitions-icon {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: #002350;
  stroke-width: 2;
}

.exhibitions-item p {
  max-width: 260px;
  margin: 0;
  color: #0e0e0e;
  font-size: 20px;
  font-family: "Georgia", sans-serif;
  line-height: 1.6;
}

.exhibitions-history {
  padding: 5rem 0;
  background-color: #f6f8fc;
}

.exhibitions-history h2 {
  font-family: "Georgia", serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 3rem;
}

.exhibitions-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exhibitions-list li {
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 1.25rem;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #0e0e0e;
}

.exhibitions-year {
  display: inline-block;
  min-width: 3.5rem;
  margin-right: 0.75rem;
  font-family: "Georgia", serif;
  font-weight: bold;
  color: #002350;
}

.luminous-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.luminous-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
}

.luminous-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #002350;
  border-radius: 5px;
}

.contact {
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url(../img/88b.webp);
  background-size: cover;
  background-position: center;
}

.container-contact {
  background-color: #ffffff;
  color: #002350;
  padding: 50px;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.contact h2 {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #0e0e0e;
}

.contact p {
  max-width: 700px;
  margin: 0 auto 1rem;
  font-family: "Georgia", sans-serif;
  font-size: 20px;
  color: #0e0e0e;
}

.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 1rem;
  width: 100%;
  min-height: 100vh;
  background-image: url("../img/c-bg.webp");
  background-size: cover;
  background-position: center;
}

.contact-text {
  color: #ffffff;
  max-width: 700px;
}

.contact-text1 {
  max-width: 500px;
  color: #0e0e0e;
  margin-bottom: 30px;
}

.contact-container {
  width: 40%;
  min-width: 320px;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.contact-title {
  font-family: "Georgia", serif;
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form {
  width: 100%;
  display: flex;
  background-color: #ffffff;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding: 2.5rem;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-label {
  font-family: "Georgia", serif;
  font-size: 0.9rem;
  color: #0e0e0e;
  letter-spacing: 0.05em;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #aaaaaa;
  font-family: "Georgia", sans-serif;
  font-size: 1rem;
  color: #0e0e0e;
  background-color: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-input:focus-visible,
.contact-textarea:focus-visible {
  border-color: #002350;
  box-shadow: 0 0 6px rgba(2, 62, 77, 0.3);
  outline: none;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  width: 100%;
  max-width: 300px;
  padding: 1rem 1.75rem;
  font-family: "Georgia", serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  align-self: center;
  background-color: transparent;
  border: 2px solid #002350;
  color: #002350;
}
.contact-btn:hover, .contact-btn:focus-visible {
  background-color: #002350;
  color: #ffffff;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-bottom: 40px;
}

.site-footer,
.footer {
  padding: 1.5rem 0;
  border-top: 1px solid #aaaaaa;
  background-color: #000000;
  text-align: center;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer-inner a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-inner a:hover, .footer-inner a:focus-visible {
  opacity: 0.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: Georgia, serif;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-close:hover, .lightbox-close:focus-visible {
  color: #002350;
}

/* ====== 1200px ====== */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .series-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ====== 900px ====== */
@media (max-width: 900px) {
  .burger {
    display: flex;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 20;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem 0;
    transform: translateY(-200%);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transition: 0.3s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }
  .nav-list a {
    font-size: 1.1rem;
    color: #0e0e0e;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gallery-grid,
  .gallery-free {
    grid-template-columns: repeat(2, 1fr);
  }
  .series-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .selected-works h2 {
    font-size: 2.2rem;
  }
  .video-banner-title {
    font-size: 2.2rem;
  }
  .video-banner-text {
    font-size: 1rem;
  }
  .contact-form {
    width: 70%;
  }
  .contact-container {
    width: 70%;
  }
  .contact h2 {
    font-size: 2.2rem;
  }
  .contact p {
    font-size: 1rem;
  }
  .about-image img {
    width: 60%;
  }
  .exhibitions-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* ====== 768px ====== */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .series-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-form {
    width: 90%;
  }
}
/* ====== 600px ====== */
@media (max-width: 600px) {
  .gallery-grid,
  .gallery-free,
  .gallery-grid1 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .gallery .gallery-text {
    width: 90%;
  }
}
@media (max-width: 600px) and (max-width: 600px) {
  .series-nav-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) and (max-width: 768px) {
  .series-nav-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .selected-works h2 {
    font-size: 1.8rem;
  }
  .btn-primary,
  .btn-ghost {
    max-width: 80%;
  }
  .contact h2 {
    font-size: 1.8rem;
  }
  .site-header {
    height: auto;
    min-height: 100px;
    padding: 1rem 0;
  }
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .container .header-inner {
    width: 100% !important;
    max-width: 100% !important;
  }
  .video-banner {
    height: 70vh;
  }
  .video-banner-title {
    font-size: 1.8rem;
  }
  .contact-form {
    width: 90%;
    padding: 1.5rem;
  }
  .contact-container {
    width: 90%;
    padding: 1rem;
  }
  .contact-btn {
    width: 100%;
  }
  .exhibitions-year {
    display: block;
    margin-bottom: 0.25rem;
  }
  .about-image {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  .about-image img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .floating-contact-btn {
    bottom: 20px;
    right: 20px;
    padding: 10px 18px;
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  .floating-contact {
    right: 1rem;
    bottom: 1rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=style.css.map */