@font-face {
  font-family: "UNBangla";
  src: url("Font/UNBangla-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UNBangla";
  src: url("Font/UNBangla-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --maroon: #6e2e3a;
  --light: #f4f1f2;
  --text: #2e2628;
  --white: #ffffff;
}

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

body {
  font-family: "UNBangla", "Noto Sans Bengali", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

.hero {
  min-height: 78vh;
  background: url("Photos/cover.webp") center/cover no-repeat;
  position: relative;
  color: #f3e7e7;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  position: relative;
}

.brand img {
  width: 90px;
}

.brand {
  margin-left: -10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
  color: #f3e7e7;
  padding: 6px 10px;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav-links a.is-active {
  background: rgba(255, 255, 255, 0.2);
}

.menu {
  background: transparent;
  border: 0;
  display: none;
  cursor: pointer;
}

.menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f3e7e7;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile nav open state */
.nav-links.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(110, 46, 58, 0.97);
  padding: 16px 6vw 24px;
  gap: 12px;
  z-index: 100;
}

.hero-content {
  position: absolute;
  right: 8vw;
  top: 40%;
  transform: translateY(-40%);
  max-width: 420px;
  text-align: left;
}

.quote-mark {
  font-size: 90px;
  line-height: 0.7;
  opacity: 0.5;
  margin-bottom: 10px;
}

.hero-quote {
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.bio {
  background: url("Photos/white-color.webp") center/cover no-repeat;
  padding: 80px 6vw;
}

.bio-inner {
  display: block;
}

.bio-text h1,
.bio-text h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.bio-text {
  display: block;
}

.bio-float-photo {
  float: right;
  width: 38%;
  margin: 4px 0 18px 28px;
  display: block;
}

.bio-text p {
  margin-bottom: 14px;
}

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

.bio-text .ghost-btn {
  display: inline-block;
}

.ghost-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid var(--text);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ghost-btn:hover {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
  transform: scale(1.03);
}

.bio-photo {
  display: flex;
  justify-content: center;
  align-items: start;
}

.bio-photo img {
  width: 90%;
}

.bio-index .bio-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.bio-index .bio-photo img {
  width: 50%;
}

.memories {
  background: url("Photos/footer.webp") center/cover no-repeat;
  padding: 70px 6vw 90px;
  color: #f3e7e7;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.card-img {
  background: var(--white);
  padding: 8px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.card-img img {
  border-radius: 12px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.card a {
  color: #f3e7e7;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.media {
  padding: 70px 6vw 60px;
  background: url("Photos/white-color.webp") center/cover no-repeat;
}

.section-title.dark h2 {
  color: var(--text);
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.media-large {
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #7a3b49;
  background: #fff;
}

.media-large video,
.media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-large.video {
  position: relative;
}

.media-large.video .frame-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.media-large.video .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
}

.media-large.video .play img {
  width: 70px;
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.media-strip img {
  border-radius: 12px;
  border: 2px solid #7a3b49;
  transition: transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-strip img:hover {
  transform: scale(1.05);
  border-color: var(--maroon);
}

/* ===== MEDIA PAGE ===== */

.hero-media {
  min-height: 78vh;
}

.hero-media .hero-quote-block {
  position: absolute;
  right: 9vw;
  top: 40%;
  transform: translateY(-40%);
  max-width: 460px;
}

.media-gallery {
  background: url("Photos/white-color.webp") center/cover no-repeat;
  padding: 70px 6vw 80px;
}

.gallery-feature {
  max-width: 980px;
  margin: 0 auto 40px;
  background: #ffffff;
  padding: 12px;
  border: 4px solid #7a3b49;
  border-radius: 6px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.gallery-feature img {
  width: 100%;
  border-radius: 4px;
  filter: grayscale(10%);
}

.gallery-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 28px;
}

.gallery-card {
  text-align: center;
}

.gallery-card img {
  width: 100%;
  background: #ffffff;
  padding: 8px;
  border: 3px solid #7a3b49;
  border-radius: 6px;
  filter: grayscale(10%);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-card:hover img {
  transform: translateY(-4px);
  filter: grayscale(0%);
}

.gallery-card figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: #5e5053;
  line-height: 1.6;
}

.media-more {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.media-gallery .ghost-btn {
  margin-right: 0;
}

.video-showcase {
  background: url("Photos/footer.webp") center/cover no-repeat;
  padding: 70px 6vw 90px;
  color: #f3e7e7;
}

.video-frame {
  max-width: 980px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.video-frame-inner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}

.video-frame-inner img {
  width: 100%;
  display: block;
  filter: grayscale(15%);
}

.video-frame-inner .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.16);
}

.video-frame-inner .play img {
  width: 70px;
}

.video-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.video-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.video-dots .dot.is-active {
  background: #ffffff;
}

.footer {
  background: url("Photos/footer.webp") center/cover no-repeat;
  color: #f3e7e7;
  padding: 50px 6vw 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.footer .social {
  justify-self: end;
  text-align: right;
}

.footer h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.footer p {
  margin-bottom: 6px;
}

.icons {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  justify-content: flex-end;
}

.icons img {
  width: 34px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.icons img:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

.copyright {
  text-align: center;
  font-size: 14px;
  opacity: 0.9;
}

.hero-tertiary {
  min-height: 78vh;
  position: relative;
}

.hero-tertiary .hero-quote-block {
  position: absolute;
  right: 9vw;
  top: 40%;
  transform: translateY(-40%);
  max-width: 460px;
}

.works,
.remembrance {
  background: #f1eded;
  padding: 70px 6vw 90px;
}

.remembrance .section-title h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 26px;
}

.work-card {
  text-align: center;
}

.work-cover {
  background: #7a3b49;
  padding: 10px;
  border-radius: 8px;
  max-width: 260px;
  margin: 0 auto 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover .work-cover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.work-cover img {
  border-radius: 4px;
}

.work-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.work-card p {
  font-size: 14px;
  opacity: 0.75;
}

/* ===== BIOGRAPHY PAGE ===== */

.hero-secondary {
  min-height: 78vh;
}

.bio-secondary {
  background: #f2eeee;
}

.family-tree {
  background: #6e2e3a;
  color: #f3e7e7;
  padding: 70px 6vw 90px;
}

.family-tree .section-title h2 {
  font-size: 30px;
}

.tree {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.tree-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.tree-node {
  background: #8c3b4b;
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 14px;
  min-width: 120px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.tree-node-lg {
  font-size: 16px;
  min-width: 160px;
}

.media-secondary {
  background: #f4f1f2;
}

.media-secondary .media-large {
  border-color: #7a3b49;
}

/* ===== CONTACT PAGE ===== */

.hero-contact {
  min-height: 78vh;
  position: relative;
}

.contact-map {
  background: #f2eeee;
  padding: 30px 6vw 10px;
}

.map-card {
  background: #ffffff;
  padding: 16px;
  border-radius: 18px;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.map-embed {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 12px;
}

.feedback {
  background: #f2eeee;
  padding: 40px 6vw 80px;
}

.feedback h2 {
  font-size: 32px;
  color: var(--maroon);
  margin-bottom: 24px;
  text-align: left;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-weight: 700;
  color: var(--maroon);
}

.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #b89da3;
  padding: 8px 2px 10px;
  font-size: 16px;
  color: var(--text);
  font-family: "UNBangla", "Noto Sans Bengali", sans-serif;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field.full {
  grid-column: 1 / -1;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--maroon);
}

.submit-btn {
  display: inline-block;
  padding: 10px 32px;
  background: var(--maroon);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: "UNBangla", "Noto Sans Bengali", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit-btn:hover {
  background: #8b3a47;
  transform: scale(1.03);
}

/* ===== REMEMBRANCE PAGE ===== */

.hero-remembrance {
  min-height: 78vh;
  position: relative;
  color: #f3e7e7;
}

.hero-remembrance .hero-quote-block {
  position: absolute;
  right: 9vw;
  top: 40%;
  transform: translateY(-40%);
  max-width: 460px;
}

.hero-remembrance .quote-mark {
  font-size: 80px;
  line-height: 0.8;
  opacity: 0.45;
  margin-bottom: 10px;
}

.remembrance-list {
  background: #f4f1f2;
  padding: 60px 6vw 90px;
}

.remembrance-list .section-title h2 {
  font-size: 32px;
  color: var(--text);
}

.remembrance-items {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}

.remembrance-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

.remembrance-photo {
  background: #6e2e3a;
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.remembrance-photo img {
  width: 100%;
  border-radius: 12px;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}

.remembrance-photo:hover img {
  filter: grayscale(0%);
}

.remembrance-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.remembrance-content .author {
  font-size: 14px;
  color: #7b6e71;
  font-style: italic;
  margin-bottom: 10px;
}

.remembrance-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
  text-align: justify;
}

.remembrance-content a {
  display: inline-block;
  background: var(--maroon);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

/* ===== REMEMBRANCE.HTML PAGE-FOUR STYLES ===== */

.page-four {
  background: var(--light);
}

.hero-fourth {
  min-height: 78vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 6vw;
  color: #f3e7e7;
}

.hero-fourth .nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 6vw;
  z-index: 10;
}

.hero-fourth-content {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero-fourth-image {
  flex: 0 0 300px;
}

.hero-fourth-image img {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(100%);
}

.hero-fourth-text {
  flex: 1;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 600;
}

.hero-fourth-text .quote-mark {
  font-size: 80px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  display: inline-block;
}

.page-four .remembrance {
  padding: 60px 6vw;
  background: var(--light);
}

.page-four .remembrance .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.page-four .remembrance .section-title h2 {
  font-size: 36px;
  color: var(--text);
  font-weight: 700;
}

.page-four .remembrance-items {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.remembrance-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.remembrance-item:nth-child(even) {
  grid-template-columns: 1fr 300px;
}

.remembrance-item:nth-child(even) .item-image {
  order: 2;
}

.remembrance-item:nth-child(even) .item-text {
  order: 1;
}

.item-image {
  position: relative;
}

.item-image img {
  width: 100%;
  border: 4px solid #6e2e3a;
  border-radius: 4px;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}

.item-image:hover img {
  filter: grayscale(0%);
}

.item-text h3 {
  font-size: 20px;
  color: var(--maroon);
  margin-bottom: 8px;
  font-weight: 700;
}

.item-text .subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  font-style: italic;
}

.item-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 15px;
  text-align: justify;
}

.item-text a {
  display: inline-block;
  background: #6e2e3a;
  color: white;
  padding: 8px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.item-text a:hover {
  background: #8b3a47;
}

/* ===== PAGE TRANSITIONS ===== */

.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--light);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.35s ease;
}

.page-transition-overlay.is-leaving {
  opacity: 1;
  pointer-events: all;
}

/* ===== SCROLL REVEAL ===== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cards .card.reveal:nth-child(1) { transition-delay: 0s; }
.cards .card.reveal:nth-child(2) { transition-delay: 0.1s; }
.cards .card.reveal:nth-child(3) { transition-delay: 0.2s; }
.cards .card.reveal:nth-child(4) { transition-delay: 0.3s; }

.works-grid .work-card.reveal:nth-child(1) { transition-delay: 0s; }
.works-grid .work-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.works-grid .work-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.works-grid .work-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.works-grid .work-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.works-grid .work-card.reveal:nth-child(6) { transition-delay: 0.40s; }

.page-four .remembrance-items .remembrance-item.reveal:nth-child(1) { transition-delay: 0s; }
.page-four .remembrance-items .remembrance-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.page-four .remembrance-items .remembrance-item.reveal:nth-child(3) { transition-delay: 0.24s; }
.page-four .remembrance-items .remembrance-item.reveal:nth-child(4) { transition-delay: 0.36s; }

/* ===== HERO LOAD ANIMATION ===== */

.hero-anim {
  animation: heroFadeUp 0.8s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fourth-content {
  animation: heroFadeUp 0.8s ease both;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
  .hero-content {
    right: 6vw;
    top: 45%;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

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

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .menu {
    display: block;
  }

  .hero {
    min-height: unset;
    background-size: contain;
    background-position: top center;
    padding-top: calc(100vw * 4505 / 7992);
  }

  .hero .nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
  }

  .brand img {
    width: 42px;
  }

  .hero-content {
    display: none;
  }

  .bio-float-photo {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .bio-inner {
    grid-template-columns: 1fr;
  }

  .bio-index .bio-inner {
    grid-template-columns: 1fr;
  }

  .bio-index .bio-photo {
    justify-content: center;
  }

  .bio-index .bio-photo img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .bio-text h1,
  .bio-text h2 {
    font-size: 26px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-tertiary .hero-quote-block {
    position: static;
    transform: none;
    padding: 36px 6vw 60px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .hero-fourth-content {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }

  .hero-fourth-text {
    font-size: 18px;
  }

  .remembrance-item {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .remembrance-item:nth-child(even) .item-image {
    order: 0;
  }

  .remembrance-item:nth-child(even) .item-text {
    order: 0;
  }

  .item-image {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-media .hero-quote-block {
    position: static;
    transform: none;
    padding: 36px 6vw 60px;
  }
}

@media (max-width: 900px) {
  .feedback-form {
    grid-template-columns: 1fr;
  }

  .map-embed {
    height: 280px;
  }

  .hero-remembrance .hero-quote-block {
    position: static;
    transform: none;
    padding: 36px 6vw 50px;
  }

  .remembrance-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-contact {
    min-height: 50vh;
  }

  .feedback h2 {
    font-size: 26px;
  }
}
