:root {
  --ink: #101417;
  --deep: #071018;
  --gold: #b88a4c;
  --gold-2: #d9ad72;
  --paper: #f4f0e9;
  --paper-2: #faf7f1;
  --line: #d9cfc1;
  --muted: #7d776f;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Vazirmatn", Tahoma, sans-serif;
  line-height: 1.8;
}

html[lang="fa"] body,
html[lang="fa"] button,
html[lang="fa"] input,
html[lang="fa"] select,
html[lang="fa"] textarea {
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

html[lang="en"] body,
html[lang="en"] button,
html[lang="en"] input,
html[lang="en"] select,
html[lang="en"] textarea {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

html[dir="rtl"] body { direction: rtl; text-align: right; }
html[dir="ltr"] body { direction: ltr; text-align: left; }

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

button {
  font: inherit;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.container {
  width: min(1180px, calc(100% - 44px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 150px;
  align-items: center;
  min-height: 82px;
  padding: 0 24px;
  background: rgba(7, 16, 24, 0.96);
  border-bottom: 1px solid rgba(217, 173, 114, 0.15);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 175px;
  max-height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 25px);
  color: #eee;
  font-size: 12px;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0 26px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 0.3s ease;
}

.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--gold-2);
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  direction: ltr;
}

.language {
  color: #fff;
  font-size: 11px;
  opacity: 0.65;
}

.language.active {
  color: var(--gold-2);
  opacity: 1;
}

.menu-btn {
  display: none;
  width: 34px;
  height: 34px;
  padding: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--gold-2);
}

.mobile-menu {
  position: fixed;
  top: 76px;
  right: 0;
  left: 0;
  z-index: 45;
  display: grid;
  gap: 14px;
  padding: 22px 28px;
  background: rgba(7, 16, 24, 0.98);
  border-bottom: 1px solid rgba(217, 173, 114, 0.25);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Hero */
.page-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: url("assets/awards-hero.jpg") center / cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba(5, 13, 19, 0.32), rgba(5, 13, 19, 0.88) ), linear-gradient( 0deg, rgba(5, 13, 19, 0.45), transparent );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 82px;
  text-align: center;
  color: #fff;
}

.page-hero-content p, .section-heading small {
  margin: 0;
  color: var(--gold-2);
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 2px;
  direction: ltr;
}

.page-hero-content h1 {
  margin: 12px 0 8px;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
}

.page-hero-content span {
  color: #ddd;
  font-size: 14px;
}

.page-hero-content i {
  display: block;
  width: 95px;
  height: 1px;
  margin: 25px auto 0;
  background: var(--gold);
}

/* Headings */
.section-heading {
  max-width: 660px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 7px 0;
  font-size: 32px;
  font-weight: 500;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Intro */
.awards-intro {
  padding: 58px 0 28px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.summary-grid article {
  padding: 25px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.summary-grid article:last-child {
  border-left: 0;
}

.summary-grid strong {
  display: block;
  color: var(--gold);
  font-size: 34px;
  font-weight: 500;
}

.summary-grid span {
  color: var(--muted);
  font-size: 12px;
}

/* Featured award */
.featured-award {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 28px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.featured-award-image img {
  height: 100%;
  min-height: 430px;
}

.featured-award-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.award-label {
  color: var(--gold-2);
  font-size: 12px;
}

.featured-award-content h2 {
  margin: 10px 0 4px;
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 500;
}

.award-subtitle {
  color: #fff !important;
  font-size: 15px !important;
}

.featured-award-content p {
  color: #c7c7c7;
  font-size: 13px;
}

.award-meta {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(217, 173, 114, 0.25);
  color: #aaa;
  font-size: 11px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 20px;
  margin-top: 22px;
  padding: 9px 18px;
  background: linear-gradient(135deg, #d5ac74, #97703d);
  color: #172026;
}

/* Awards archive */
.awards-list {
  padding: 68px 0;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-tabs button {
  padding: 8px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.filter-tabs button.active, .filter-tabs button:hover {
  background: var(--deep);
  color: var(--gold-2);
}

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

.award-card {
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.award-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 34px rgba(7, 16, 24, 0.12);
}

.award-image {
  height: 220px;
  overflow: hidden;
}

.award-image img {
  height: 100%;
  transition: transform 0.6s ease;
}

.award-card:hover img {
  transform: scale(1.06);
}

.award-card-content {
  padding: 20px;
}

.award-card-content > span {
  color: var(--gold);
  font-size: 11px;
}

.award-card h3 {
  margin: 8px 0;
  font-size: 18px;
  font-weight: 500;
}

.award-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.award-card time {
  display: block;
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: #86623a;
  font-size: 12px;
}

.award-card.is-hidden {
  display: none;
}

/* Timeline */
.timeline-section {
  padding: 62px 0;
  background: linear-gradient(120deg, #11181d, #071018);
}

.section-heading.light h2 {
  color: #fff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 42px;
}

/* Components shared with the other museum pages */
.language-switcher {
  position: relative;
  z-index: 60;
  direction: ltr;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 112px;
  min-height: 42px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(5, 8, 12, 0.76);
  border: 1px solid rgba(185, 144, 75, 0.62);
  cursor: pointer;
}

.language-trigger:hover,
.language-switcher.is-open .language-trigger {
  color: var(--gold-2);
  border-color: var(--gold-2);
}

.language-globe { color: var(--gold-2); font-size: 17px; }
.language-trigger-label { min-width: 46px; font-size: 12px; font-weight: 600; }

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 178px;
  padding: 6px;
  color: #fff;
  background: rgba(7, 16, 24, 0.99);
  border: 1px solid rgba(185, 144, 75, 0.48);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-7px);
  transition: 0.2s ease;
}

html[dir="rtl"] .language-menu { right: auto; left: 0; }
.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.language-option:last-child { border-bottom: 0; }
.language-option:hover,
.language-option.is-active { color: var(--gold-2); background: rgba(185, 144, 75, 0.12); }
.language-option[data-lang="fa"] { direction: rtl; text-align: right; }
.language-option[data-lang="en"] { direction: ltr; text-align: left; }
.language-option-name { display: flex; flex-direction: column; }
.language-option-name strong { font-size: 13px; }
.language-option-name small { color: rgba(255, 255, 255, 0.4); font-size: 10px; }
.language-check { width: 7px; height: 7px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.36); }
.language-option.is-active .language-check { background: var(--gold-2); border-color: var(--gold-2); }

.award-image-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: #ece6dc;
}

.award-image-set a {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid rgba(217, 207, 193, 0.75);
}

.award-image-set a:only-child,
.award-image-set a:first-child:nth-last-child(3) { grid-column: 1 / -1; }

.award-image-set img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
}

.award-card {
  display: flex;
  flex-direction: column;
}

.award-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.award-card time { margin-top: auto; }

.featured-award-image {
  display: grid;
  place-items: center;
  padding: 24px;
  background: #ece6dc;
}

.featured-award-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 430px;
  object-fit: contain;
}

html[dir="ltr"] .site-header,
html[dir="ltr"] .desktop-nav,
html[dir="ltr"] .mobile-menu,
html[dir="ltr"] .page-hero-content,
html[dir="ltr"] .summary-grid,
html[dir="ltr"] .featured-award,
html[dir="ltr"] .awards-grid,
html[dir="ltr"] .timeline,
html[dir="ltr"] .footer-grid { direction: ltr; }

html[dir="rtl"] .site-header,
html[dir="rtl"] .desktop-nav,
html[dir="rtl"] .mobile-menu,
html[dir="rtl"] .page-hero-content,
html[dir="rtl"] .summary-grid,
html[dir="rtl"] .featured-award,
html[dir="rtl"] .awards-grid,
html[dir="rtl"] .timeline,
html[dir="rtl"] .footer-grid { direction: rtl; }

.featured-award-content,
.award-card-content,
.award-meta,
footer#contact .footer-grid > div,
.copyright {
  text-align: start;
}

html[dir="ltr"] .desktop-nav a::after { right: auto; left: 0; }

html[dir="ltr"] footer#contact .footer-grid > div:not(:last-child) {
  border-left: 0;
  border-right: 1px solid rgba(255,255,255,.08);
}

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

@media (max-width: 1050px) {
  .language-trigger { min-width: 44px; width: 44px; padding-inline: 7px; }
  .language-trigger-label { display: none; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
}

@media (max-width: 760px) {
  .featured-award { grid-template-columns: 1fr; }
  .featured-award-image { min-height: 310px; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid article:nth-child(2) { border-left: 0; }
  .summary-grid article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .awards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .filter-tabs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 7px; }
  .filter-tabs button { flex: 0 0 auto; }
}

.timeline::before {
  position: absolute;
  top: 25px;
  right: 7%;
  left: 7%;
  height: 1px;
  content: "";
  background: rgba(217, 173, 114, 0.4);
}

.timeline article {
  position: relative;
  padding-top: 54px;
  text-align: center;
}

.timeline article::before {
  position: absolute;
  top: 17px;
  right: 50%;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(50%);
}

.timeline span {
  color: var(--gold-2);
  font-size: 14px;
}

.timeline h3 {
  margin: 7px 0 0;
  color: #ddd;
  font-size: 13px;
  font-weight: 400;
}

/* =====================================================
   FOOTER
===================================================== */
footer#contact {
  margin:0;
  padding:0;
  background:#071018;
  color:#ddd;
  border-top:3px solid var(--gold)
}

footer#contact .footer-grid {
  display:grid;
  grid-template-columns:320px repeat(4,1fr);
  gap:0;
  padding:35px 0 25px;
  align-items:start
}

footer#contact .footer-grid>div {
  padding:0 16px;
  margin:0;
  min-height:auto
}

footer#contact .footer-grid>div:not(:last-child) {
  border-left:1px solid rgba(255,255,255,.08)
}

.footer-brand {
  display:flex;
  align-items:flex-start;
  justify-content:center
}

.footer-logo {
  width:280px;
  max-width:100%;
  height:auto
}

footer#contact h4 {
  margin:0 0 10px;
  padding:0;
  color:var(--gold-2);
  font-size:15px
}

footer#contact a {
  display:block;
  margin:2px 0;
  color:#d8d8d8;
  font-size:12px;
  line-height:1.7
}

footer#contact p {
  margin:2px 0;
  font-size:12px;
  line-height:1.7
}

footer#contact .social {
  margin-top:8px;
  color:var(--gold-2);
  font-size:20px;
  letter-spacing:6px
}

footer#contact .copyright {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  margin:0;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:11px
}

@media(max-width:1100px) {
  footer#contact .footer-grid {
    grid-template-columns:repeat(3,1fr)
  }

  .footer-brand {
    grid-column:1/-1
  }

}

@media(max-width:768px) {
  footer#contact .footer-grid {
    grid-template-columns:repeat(2,1fr);
    padding:24px 0 16px
  }

  footer#contact .copyright {
    flex-direction:column;
    gap:4px;
    text-align:center
  }

}

@media(max-width:520px) {
  footer#contact .footer-grid {
    grid-template-columns:1fr
  }

  footer#contact .footer-grid>div {
    padding:12px 0;
    border-left:0;
    border-bottom:1px solid rgba(255,255,255,.08);
    text-align:center
  }

  footer#contact .footer-grid>div:last-child {
    border-bottom:0
  }

  .footer-brand {
    justify-content:center
  }

  .footer-logo {
    width:220px
  }

}

/* =====================================================
   EXHIBITIONS PAGE
===================================================== */
.page-hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background: url("assets/exhibition-abgineh.jpg") center / cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 19, .38), rgba(5, 13, 19, .9)),
    linear-gradient(0deg, rgba(5, 13, 19, .55), transparent);
}

.exhibitions-intro { padding: 64px 0 32px; }

.featured-exhibition {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  margin-top: 28px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.featured-image,
.featured-image .gallery-open,
.featured-image img { min-height: 500px; height: 100%; }

.gallery-open {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
}

.gallery-open img { transition: transform .55s ease; }
.gallery-open:hover img { transform: scale(1.035); }

.featured-image .gallery-open > span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  background: rgba(7, 16, 24, .86);
  color: var(--gold-2);
  font-size: 12px;
  backdrop-filter: blur(8px);
}

html[dir="ltr"] .featured-image .gallery-open > span {
  right: auto;
  left: 18px;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.eyebrow {
  color: var(--gold-2);
  font-size: 12px;
}

.featured-content h2 {
  margin: 10px 0 22px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.55;
}

.featured-content > p {
  margin: 20px 0 0;
  color: #c7c7c7;
  font-size: 13px;
}

.exhibition-details { margin: 0; }

.exhibition-details > div {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(217, 173, 114, .2);
}

.exhibition-details dt { color: var(--gold-2); font-size: 12px; }
.exhibition-details dd { margin: 0; color: #ddd; font-size: 12px; }

.exhibitions-list { padding: 76px 0; }
.exhibition-timeline { display: grid; gap: 26px; }

.exhibition-item {
  display: grid;
  grid-template-columns: 120px 22px minmax(0, 1fr);
  align-items: stretch;
}

.timeline-date {
  padding-top: 18px;
  text-align: center;
}

.timeline-date strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  font-weight: 500;
}

.timeline-date span { color: var(--muted); font-size: 11px; }

.timeline-line { position: relative; }
.timeline-line::before {
  position: absolute;
  top: 0;
  bottom: -26px;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
}
.timeline-line::after {
  position: absolute;
  top: 29px;
  left: 50%;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--paper);
  transform: translateX(-50%);
}
.exhibition-item:last-child .timeline-line::before { bottom: 50%; }

.exhibition-card {
  display: grid;
  grid-template-columns: minmax(230px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.card-image,
.card-image .gallery-open,
.card-image img { min-height: 250px; height: 100%; }

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.card-content small { color: var(--gold); font-size: 11px; }
.card-content h3 { margin: 8px 0; font-size: 21px; font-weight: 500; }
.card-content p { margin: 0; color: var(--muted); font-size: 12px; }
.card-content > span { margin-top: 14px; color: #86623a; font-size: 12px; }

.archive-gallery {
  padding: 72px 0;
  background: linear-gradient(120deg, #11181d, #071018);
}

.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: #aaa; }

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

.gallery-grid figure { margin: 0; }
.gallery-grid .gallery-open { aspect-ratio: 4 / 5; }
.gallery-grid img { height: 100%; }
.gallery-grid span {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #fff;
  font: 600 13px/1 "Inter", sans-serif;
  text-shadow: 0 2px 8px #000;
}

.exhibitions-cta { padding: 52px 0; background: #e8e0d5; }
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-content small { color: var(--gold); font: 11px/1.5 Georgia, serif; letter-spacing: 2px; }
.cta-content h2 { margin: 8px 0; font-size: 28px; font-weight: 500; }
.cta-content p { margin: 0; color: var(--muted); font-size: 13px; }
.cta-content .primary-button { flex: 0 0 auto; margin-top: 0; }

@media (max-width: 900px) {
  .featured-exhibition { grid-template-columns: 1fr; }
  .featured-image, .featured-image .gallery-open, .featured-image img { min-height: 360px; }
  .exhibition-card { grid-template-columns: minmax(190px, .8fr) minmax(0, 1.2fr); }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: minmax(150px, 1fr) auto;
    min-height: 76px;
    padding-inline: 18px;
  }

  .desktop-nav { display: none; }
  .header-actions { display: flex; }
  .menu-btn { display: block; }
  .brand-logo { width: 150px; }
}

@media (max-width: 700px) {
  .exhibition-item { grid-template-columns: 1fr; }
  .timeline-date { padding: 0 0 10px; text-align: start; }
  .timeline-line { display: none; }
  .exhibition-card { grid-template-columns: 1fr; }
  .card-image, .card-image .gallery-open, .card-image img { min-height: 260px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-open { aspect-ratio: 4 / 3; }
  .cta-content { align-items: flex-start; flex-direction: column; }
}
