/* ── Reset & Root ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #121938;
  background: #fafafb;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
}
h1,
h2,
h3 {
  line-height: 1.15;
  font-weight: 800;
}
p {
  max-width: 62ch;
}

/* ── Variables ── */
:root {
  --pink: #d81b7d;
  --pink-deep: #b01564;
  --pink-pale: #fff3f9;
  --navy: #0d1238;
  --navy-mid: #1a1f50;
  --bg: #fafafb;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --border: rgba(13, 18, 56, 0.08);
  --text: #121938;
  --text-muted: #5f6480;
  --text-faint: #8c91a8;
  --font-body: "Inter", sans-serif;
  --max-width: 1180px;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-full: 9999px;
  --sh-sm: 0 2px 8px rgba(13, 18, 56, 0.05);
  --sh-md: 0 8px 28px rgba(13, 18, 56, 0.08);
  --ease: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1240px;
  --gold: #f5a623;
  --pink-light: #e8388e;
  --pink-tint: #fff5fb;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

/* ── Top Bar ── */
.top-bar {
  background: linear-gradient(
    120deg,
    var(--navy) 0%,
    var(--navy-mid) 60%,
    #3d0d28 100%
  );
  padding: 10px 0;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.top-bar__item,
.top-bar__hours {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.logo__emblem {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--sh-sm);
  background: #fff;
}
.logo__emblem img {
  height: 100%;
  object-fit: cover;
}
.logo__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
}
.logo__board {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
}
.logo__slogan {
  font-size: 11px;
  color: var(--text-faint);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__list a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: 0.2s ease;
}
.nav__list a:hover,
.nav__list a.active {
  color: var(--pink-deep);
  background: var(--pink-pale);
}
.nav__cta {
  background: var(--pink) !important;
  color: #fff !important;
  border-radius: var(--r-full) !important;
  padding: 10px 20px !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: var(--ease);
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: var(--s4) 0 var(--s6);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}
.mobile-menu a {
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
}
.mobile-menu__cta {
  display: block;
  width: min(100% - 32px, var(--max-width));
  margin: 16px auto 0;
  text-align: center;
  background: var(--pink);
  color: #fff !important;
  padding: 14px 18px !important;
  border-radius: var(--r-full);
}

/* ── HERO (centered) ── */
.hero {
  position: relative;
  min-height: 60vh;
  background: var(--navy) center / cover no-repeat;
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 18, 56, 0.2) 0%,
    rgba(13, 18, 56, 0.88) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5rem 0 4rem;
  text-align: center;
  /* ← CENTERED */
}
.hero h1 {
  font-size: clamp(2rem, 1.2rem + 3vw, 4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-align: center;
  /* ← CENTERED */
}
.hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  max-width: 48ch;
  text-align: center;
  /* ← CENTERED */
  margin-inline: auto;
  /* center the paragraph block */
}

/* ── Sections ── */
.section {
  padding: clamp(var(--s12), 6vw, var(--s20)) 0;
}
.section--light {
  background: var(--surface-2);
}
.section__header {
  margin-bottom: var(--s10);
}
.section__header.center {
  text-align: center;
}
.section__header.center p {
  margin-inline: auto;
}
.section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.section__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Intro ── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s8);
  align-items: center;
}
.intro__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
.intro__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.intro__image:hover img {
  transform: scale(1.04);
}
.intro__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.75) 0%,
    rgba(13, 18, 56, 0.08) 55%,
    transparent 100%
  );
}
.intro__caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}
.intro__caption h3 {
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.7rem);
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: var(--s4);
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--surface);
  box-shadow: var(--sh-sm);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover img {
  transform: scale(1.05);
}
.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(13, 18, 56, 0.82) 0%,
    rgba(13, 18, 56, 0.12) 55%,
    transparent 100%
  );
}
.gallery-card__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
}
.gallery-card__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}
.gallery-card__content h3 {
  font-size: clamp(1rem, 0.88rem + 0.5vw, 1.3rem);
}
.gallery-card:nth-child(1) {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}
.gallery-card:nth-child(2) {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}
.gallery-card:nth-child(3) {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}
.gallery-card:nth-child(4) {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}
.gallery-card:nth-child(5) {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}
.gallery-card:nth-child(6) {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

/* ── Photo Wall ── */
.photo-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: var(--s4);
}
.photo-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  background: var(--surface);
  cursor: pointer;
}
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-tile:hover img {
  transform: scale(1.06);
}
.photo-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 18, 56, 0.7) 0%, transparent 60%);
  opacity: 0;
  transition: 0.25s ease;
}
.photo-tile:hover .photo-tile__overlay {
  opacity: 1;
}
.photo-tile__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.25s ease;
}
.photo-tile:hover .photo-tile__label {
  opacity: 1;
  transform: translateY(0);
}
.photo-tile:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}
.photo-tile:nth-child(2) {
  grid-column: 5 / 9;
  grid-row: 1 / 2;
}
.photo-tile:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 2;
}
.photo-tile:nth-child(4) {
  grid-column: 5 / 9;
  grid-row: 2 / 3;
}
.photo-tile:nth-child(5) {
  grid-column: 9 / 13;
  grid-row: 2 / 3;
}
.photo-tile:nth-child(6) {
  grid-column: 1 / 7;
  grid-row: 3 / 4;
}
.photo-tile:nth-child(7) {
  grid-column: 7 / 13;
  grid-row: 3 / 4;
}

/* ── CTA ── */
.cta {
  padding: var(--s16) 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 55%,
    #3d0d28 100%
  );
}
.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
}
.cta__box h2 {
  color: #fff;
  font-size: clamp(1.5rem, 1rem + 1.5vw, 2.4rem);
  margin-bottom: 10px;
}
.cta__box p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  max-width: 48ch;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--r-full);
  background: var(--pink);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- FOOTER BASE ---------- */
.site-footer {
  background: linear-gradient(
    160deg,
    var(--navy) 0%,
    var(--navy-mid) 55%,
    #3a0d28 100%
  );
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
}

/* ---------- MAIN GRID : 3 COLUMNS ---------- */
.footer__main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.4fr;
  /* 3 columns — no wasted 4th */
  gap: 2.5rem;
  align-items: start;
}

/* ---------- COLUMN 1 : BRAND ---------- */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__logo-emblem {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.25);
  flex-shrink: 0;
}
.footer__logo-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer__logo-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
.footer__logo-board {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.footer__logo-slogan {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__affil {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.875rem;
}
.footer__affil-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.footer__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 30ch;
}

/* stats */
.footer__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.footer__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 1rem;
}
.footer__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 1rem;
  flex-shrink: 0;
}
.footer__stat-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.footer__stat-num span {
  color: var(--pink-light);
}
.footer__stat-lbl {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* socials */
.footer__socials {
  display: flex;
  gap: 0.5rem;
}
.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  text-decoration: none;
}
.footer__social:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ---------- COLUMN 2 & 3 : HEADINGS ---------- */
.footer__col-head {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  position: relative;
}
.footer__col-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--pink);
  border-radius: 999px;
}

/* ---------- NAV LIST ---------- */
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-list a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 3px 0;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.footer__nav-list a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.footer__nav-list a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer__nav-list a:hover::before {
  opacity: 1;
}

/* ---------- CONTACT LIST ---------- */
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer__contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(196, 20, 114, 0.15);
  border: 1px solid rgba(196, 20, 114, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-light);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer__contact-icon svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.footer__contact-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 1px;
}
.footer__contact-value {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.5;
}
.footer__contact-value a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact-value a:hover {
  color: var(--pink-light);
}

/* ---------- BOTTOM BAR ---------- */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__bottom-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}
.footer__copyright {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin: 0;
}
.footer__copyright a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__copyright a:hover {
  color: var(--pink-light);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(13, 18, 56, 0.92);
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r-md);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .nav__list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .intro,
  .footer__main {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 200px);
  }
  .gallery-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
  }
  .gallery-card:nth-child(2) {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
  .gallery-card:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }
  .gallery-card:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 4 / 5;
  }
  .gallery-card:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 4 / 5;
  }
  .gallery-card:nth-child(6) {
    grid-column: 1 / 7;
    grid-row: 5 / 6;
  }
  .photo-wall {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
  .photo-tile:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
  }
  .photo-tile:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
  }
  .photo-tile:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
  }
  .photo-tile:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
  .photo-tile:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }
  .photo-tile:nth-child(6) {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
  }
  .photo-tile:nth-child(7) {
    grid-column: 1 / 7;
    grid-row: 5 / 6;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max-width));
  }
  .top-bar__hours {
    display: none;
  }
  .hero {
    min-height: 52vh;
  }
  .hero__content {
    padding: var(--s16) 0 var(--s12);
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 160px);
    gap: var(--s3);
  }
  .gallery-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .gallery-card:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .gallery-card:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .gallery-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .gallery-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }
  .gallery-card:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
  .photo-wall {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 150px);
    gap: var(--s3);
  }
  .photo-tile:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .photo-tile:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .photo-tile:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .photo-tile:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .photo-tile:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .photo-tile:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
  }
  .photo-tile:nth-child(7) {
    grid-column: 1 / 3;
    grid-row: 5 / 6;
  }
  .cta__box {
    flex-direction: column;
    align-items: flex-start;
  }
}
