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

:root {
  --brown-dark: #2a1a0e;
  --brown-mid: #5c3d1e;
  --brown-light: #8b5e3c;
  --brown-warm: #a87040;
  --pearl: #e8ddd0;
  --pearl-light: #f5efe8;
  --pearl-bright: #faf6f1;
  --gold: #c9a96e;
  --gold-light: #e0c98a;
  --text-dark: #1a1008;
  --text-mid: #4a3020;
  --white: #ffffff;
  --section-dark: #1c1008;
}

html {
  scroll-behavior: smooth;
  background-color: var(--brown-dark);
}

body {
  font-family: "Raleway", sans-serif;
  background: var(--pearl-bright);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 16, 8, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 36px;
  height: 36px;
}
.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
}
.logo-sub {
  font-size: 10px;
  font-weight: 300;
  color: var(--pearl);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: -3px;
}

nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: var(--pearl);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}
nav a:hover {
  color: var(--gold);
}

.header-phone {
  color: var(--gold);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.header-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.header-phones .header-phone {
  font-size: 13px;
  white-space: nowrap;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    #1a1008 0%,
    #2a1a0e 40%,
    #3d2510 70%,
    #1a1008 100%
  );
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M30 0v60M0 30h60' stroke='rgba(201,169,110,0.04)' stroke-width='1'/%3E%3C/svg%3E")
    repeat;
}

.hero-content {
  padding: 120px 5% 80px 8%;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--pearl-light);
  margin-bottom: 24px;
}
.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-desc {
  color: rgba(232, 221, 208, 0.7);
  font-size: 16px;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  margin-left: 16px;
  cursor: pointer;
  background: transparent;
  horisontal-align: center;
}
.btn-outline:hover {
  background: rgba(201, 169, 110, 0.1);
}

.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--brown-dark) 0%, transparent 50%),
    linear-gradient(to top, rgba(26, 16, 8, 0.8) 0%, transparent 60%);
}

.hero-shape {
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(
    135deg,
    #1a1008 0%,
    #2a1a0e 40%,
    #3d2510 70%,
    #1a1008 100%
  );
  clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--brown-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 28px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(201, 169, 110, 0.15);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(232, 221, 208, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── FEATURES ── */
.features {
  padding: 90px 8%;
  background: var(--pearl-bright);
}

.section-header {
  text-align: center;
}
.section-tag {
  display: inline-block;
  color: var(--brown-warm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--brown-warm), var(--gold));
  margin: 20px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--white);
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: 4px;
  padding: 28px 32px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--brown-warm), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  border-color: rgba(168, 112, 64, 0.25);
  box-shadow: 0 12px 40px rgba(90, 50, 20, 0.1);
  transform: translateY(-4px);
}

.feature-num {
  display: none;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.feature-text {
  font-size: 15px;
  color: #6b5040;
  line-height: 1.75;
}

/* ── ABOUT DARK SECTION ── */
.about-dark {
  background: var(--section-dark);
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.about-dark::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--pearl-light);
  line-height: 1.2;
  margin-bottom: 28px;
}
.about-content h2 span {
  color: var(--gold);
}

.about-text {
  color: rgba(232, 221, 208, 0.65);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  margin: 28px 0 40px;
}
.about-list li {
  color: rgba(232, 221, 208, 0.75);
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
}

.about-images {
  position: relative;
  height: 500px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px;
  border-radius: 4px;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
.about-img-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 160px;
  background: var(--brown-mid);
  border-radius: 4px;
  overflow: hidden;
  border: 3px solid var(--section-dark);
}
.about-img-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* ── GALLERY ── */
.gallery {
  padding: 90px 8%;
  background: var(--pearl-light);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--brown-mid);
  padding: 10px 22px;
  border-radius: 4px;
  color: var(--brown-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Raleway", sans-serif;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--brown-mid);
  color: var(--pearl-light);
  border-color: var(--brown-mid);
  box-shadow: 0 4px 12px rgba(90, 61, 30, 0.25);
}

.gallery-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.slider-window {
  overflow: hidden;
  flex: 1;
}

.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s ease;
}

.gallery-item {
  min-width: calc((100% - 32px) / 3);
  flex: 0 0 calc((100% - 32px) / 3);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--brown-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  object-fit: cover;
  transition: transform 0.5s;
  opacity: 0.85;
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 16px;
  background: linear-gradient(transparent, rgba(26, 16, 8, 0.85));
  color: var(--pearl-light);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.slider-control {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brown-dark);
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s,
    background 0.2s;
}
.slider-control:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

.gallery-price {
  text-align: center;
  margin-top: 36px;
  color: var(--brown-mid);
  font-size: 15px;
  font-weight: 400;
}
.gallery-price strong {
  color: var(--brown-warm);
  font-weight: 700;
}

/* ── PROCESS ── */
.process {
  padding: 90px 8%;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 15px);
  right: calc(12.5% + 15px);
  height: 1px;
  background: linear-gradient(
    to right,
    var(--brown-warm),
    var(--gold),
    var(--brown-warm)
  );
}

.step {
  text-align: center;
  position: relative;
}
.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
  background: var(--white);
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.step-text {
  font-size: 14px;
  color: #7a5840;
  line-height: 1.6;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    #3d2510 50%,
    var(--brown-dark) 100%
  );
  padding: 90px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='1' fill='rgba(201,169,110,0.05)'/%3E%3C/svg%3E")
    repeat;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--pearl-light);
  margin-bottom: 20px;
  position: relative;
}
.cta-section p {
  color: rgba(232, 221, 208, 0.65);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
  position: relative;
}
.cta-buttons {
  position: relative;
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
  flex: 1 1 240px;
  min-width: 240px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-buttons .btn-outline {
  margin-left: 0;
}

/* ── CONTACT ── */
.contact {
  padding: 90px 8%;
  background: var(--pearl-bright);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.contact-info p {
  color: #6b5040;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--brown-dark);
}
.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown-warm);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 15px;
  color: var(--brown-dark);
  font-weight: 600;
}
.contact-sub {
  font-size: 13px;
  color: #8a6a50;
  font-weight: 400;
}

.contact-form {
  background: var(--white);
  padding: 48px 40px;
  border-radius: 4px;
  border: 1px solid rgba(139, 94, 60, 0.12);
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--brown-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown-warm);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(139, 94, 60, 0.2);
  border-radius: 2px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  color: var(--brown-dark);
  background: var(--pearl-bright);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown-warm);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brown-warm), var(--gold));
  color: var(--brown-dark);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  transform: translateY(-1px);
}
.contact-socials {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(139,94,60,0.15);
}

.contact-socials h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 20px;
}

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

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: 2px solid transparent;
  color: var(--white);
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.social-btn.whatsapp {
  background: #25D366;
}
.social-btn.whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
}

.social-btn.telegram {
  background: #0088cc;
}
.social-btn.telegram:hover {
  background: #0077b5;
  transform: translateY(-3px);
}

.social-btn.viber {
  background: #665CAD;
}
.social-btn.viber:hover {
  background: #5A4FA0;
  transform: translateY(-3px);
}


/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  padding: 48px 8% 28px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 44px;
}

.footer-brand .logo-text {
  font-size: 22px;
  color: var(--gold-light);
}
.footer-brand p {
  color: rgba(232, 221, 208, 0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(232, 221, 208, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  color: rgba(232, 221, 208, 0.3);
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1550px) {
  .hero-actions {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    flex: 1 1 220px;
    min-width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-actions .btn-outline {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    padding: 140px 6% 60px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about-dark {
    grid-template-columns: 1fr;
  }
  .about-images {
    display: none;
  }
  .gallery-slider {
    gap: 16px;
  }
  .gallery-item {
    min-width: calc((100% - 16px) / 2);
    flex: 0 0 calc((100% - 16px) / 2);
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-buttons {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-outline {
    flex: 1 1 220px;
    min-width: 220px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-buttons .btn-outline {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .gallery {
    padding: 60px 2%;
  }
  .gallery-item {
    min-width: 100%;
    flex: 0 0 100%;
    max-height: 500px;
  }
  .gallery-item img {
    max-height: 500px;
  }
  .gallery-filters {
    gap: 12px;
    margin-bottom: 30px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
