/* ============================================================
   Ayres Hall — Knoxville's Premier Event Venue
   Theme: Orange (Ayres Hall brand) on near-black
   Inspired by atweena.nl layout
   ============================================================ */

:root {
  --orange: #F1811B;
  --orange-bright: #FF9A2E;
  --orange-dark: #C95E0A;
  --orange-soft: #FDE3C6;
  --orange-glow: rgba(241, 129, 27, 0.35);

  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f3ede2;
  --text-mute: #a59f95;
  --text-soft: #c8c1b4;

  --serif: "Crimson Pro", "Times New Roman", serif;
  --display: "Anton", "Impact", sans-serif;

  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(64px, 9vw, 140px);
  --max: 1280px;
  --max-narrow: 880px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container.narrow { max-width: var(--max-narrow); }
.center { text-align: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px var(--pad-x);
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.brand-mark img {
  height: 46px;
  width: auto;
  display: block;
}
.topbar-center { display: flex; justify-content: center; }
.menu-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}
.menu-link:hover { color: var(--orange); border-color: var(--orange); }
.topbar-right {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.contact-line { color: var(--text-soft); font-size: 12px; }
.contact-line .lbl { color: var(--text-mute); margin-right: 4px; text-transform: uppercase; }
.contact-line a { color: var(--text); }
.contact-line a:hover { color: var(--orange); }
.social-pill {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
}
.social-pill:hover { color: var(--orange); border-color: var(--orange); }
.addr {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.lang { display: inline-flex; gap: 4px; }
.lang-btn {
  background: transparent; color: var(--text-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.lang-btn.active { color: var(--orange); border-color: var(--orange); }

.menu-toggle {
  background: transparent; border: 0; color: var(--text);
  padding: 8px 4px; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.menu-text-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 14px;
  overflow: hidden;
}
.menu-text {
  display: block;
  line-height: 1;
  transition: transform .35s cubic-bezier(.7,.05,.2,1);
}
.menu-text + .menu-text { margin-left: 0; }
.menu-toggle .menu-text-wrapper .menu-text:first-child { transform: translateY(0); }
.menu-toggle .menu-text-wrapper .menu-text:last-child {
  position: absolute; left: 0; top: 100%;
}
.menu-toggle.is-open .menu-text-wrapper .menu-text:first-child { transform: translateY(-150%); }
.menu-toggle.is-open .menu-text-wrapper .menu-text:last-child { transform: translateY(-100%); }

/* ============================================================
   SLIDE NAV
   ============================================================ */
.slide-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.slide-nav.is-open { opacity: 1; pointer-events: auto; }
.slide-nav-inner {
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 0.04em;
}
.slide-nav-inner a { color: var(--text); }
.slide-nav-inner a:hover { color: var(--orange); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-pill { border-radius: 999px; }
.btn-orange {
  background: var(--orange);
  color: #1a0d04;
}
.btn-orange:hover {
  background: var(--orange-bright);
  color: #1a0d04;
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}
.btn-lg { padding: 18px 30px; font-size: 15px; }
.icon-oblique {
  display: inline-flex;
  width: 22px; height: 22px;
  background: #1a0d04;
  color: var(--orange);
  border-radius: 999px;
  align-items: center; justify-content: center;
  transform: rotate(-45deg);
  transition: transform .3s ease;
}
.btn:hover .icon-oblique { transform: rotate(0); }
.btn-orange .icon-oblique { color: var(--orange); background: #1a0d04; }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 4px;
}
.text-link.light { color: var(--orange-bright); border-color: var(--orange-bright); }
.text-link.small { font-size: 12px; }
.text-link:hover { color: var(--orange-bright); }
.text-link:hover .icon-oblique { transform: rotate(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  padding-top: 90px;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.9) contrast(1.05);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 35%, rgba(10,10,10,0.7) 100%);
  z-index: -1;
}
.hero-img.mobile { display: none; }

.hero-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  padding: 60px var(--pad-x) 80px;
}
.hero-titles {
  display: flex; flex-direction: column; gap: 6px;
}
.title-row { overflow: hidden; }
.title-mask { display: block; transform: translateY(110%); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; }
.title-row:nth-child(1) .title-mask { animation-delay: .05s; }
.title-row:nth-child(2) .title-mask { animation-delay: .15s; }
.title-row:nth-child(3) .title-mask { animation-delay: .25s; }
.title-row:nth-child(4) .title-mask { animation-delay: .35s; }
.title-row:nth-child(5) .title-mask { animation-delay: .45s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--text);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-content { display: flex; align-items: end; }
.hero-content-inner { max-width: 480px; }
.paragraph-2 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 28px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   INTRO
   ============================================================ */
.intro {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.6);
  text-align: center;
  background: var(--bg);
}
.intro-bookmark { margin-bottom: 36px; }
.lead {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--text);
  margin: 0 auto 36px;
  max-width: 780px;
  font-weight: 400;
}

/* ============================================================
   IMAGE GRID (mosaic)
   ============================================================ */
.image-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  padding: 0 var(--pad-x) calc(var(--section-y) * 0.6);
  max-width: 1440px;
  margin: 0 auto;
}
.image-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-3);
}
.image-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .3s ease;
  filter: saturate(0.92);
}
.image-grid figure:hover img { transform: scale(1.06); filter: saturate(1.1); }
.image-grid figcaption {
  position: absolute;
  left: 14px; bottom: 14px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.ig-1 { grid-column: span 3; grid-row: span 2; }
.ig-2 { grid-column: span 3; grid-row: span 1; }
.ig-3 { grid-column: span 2; grid-row: span 1; }
.ig-4 { grid-column: span 1; grid-row: span 1; }
.ig-5 { grid-column: span 2; grid-row: span 2; }
.ig-6 { grid-column: span 2; grid-row: span 1; }
.ig-7 { grid-column: span 2; grid-row: span 1; }
.ig-8 { grid-column: span 3; grid-row: span 1; }

/* ============================================================
   GENERIC SECTION HEADINGS
   ============================================================ */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin: 0 0 18px;
}
.h-display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--text);
}

/* ============================================================
   CORE VALUES
   ============================================================ */
.values {
  padding: var(--section-y) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values .text-link { margin-bottom: 60px; }
.value-list {
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: v;
}
.value {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding-left .3s ease;
}
.value:last-child { border-bottom: 1px solid var(--line); }
.value:hover { padding-left: 12px; }
.value:hover h4 { color: var(--orange); }
.value-num {
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
}
.value-body h4 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.value-body p { margin: 0; color: var(--text-soft); font-size: 17px; line-height: 1.55; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-y) 0;
  background: var(--bg);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.95);
}
.about-text p { color: var(--text-soft); margin: 0 0 18px; }
.about-text .text-link { margin-top: 8px; }

/* ============================================================
   FACILITIES
   ============================================================ */
.facilities {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facilities-head { max-width: 720px; margin-bottom: 60px; }
.facilities-head p { color: var(--text-soft); margin: 0 0 18px; font-size: 18px; }
.facility-list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.facility {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.facility:hover { background: var(--bg-3); }
.facility:hover h4 { color: var(--orange); }
.facility h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.02em;
  transition: color .25s ease;
}
.facility p { margin: 0; color: var(--text-soft); font-size: 16px; line-height: 1.5; }

/* ============================================================
   FOOD & DRINKS
   ============================================================ */
.food { padding: var(--section-y) 0; background: var(--bg); }
.food-text p { color: var(--text-soft); margin: 0 0 18px; }
.packages-label { color: var(--orange); font-weight: 500; margin-top: 8px; }
.packages { list-style: none; padding: 0; margin: 0 0 24px; }
.packages li { padding: 12px 0; border-top: 1px solid var(--line); color: var(--text-soft); }
.packages li:last-child { border-bottom: 1px solid var(--line); }
.packages strong { color: var(--text); font-weight: 500; margin-right: 4px; }
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.food-grid figure {
  margin: 0; overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-3);
  border-radius: 4px;
}
.food-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.food-grid figure:hover img { transform: scale(1.06); }

/* ============================================================
   BOOK / FORM
   ============================================================ */
.book {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event-form {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.form-note {
  background: rgba(241, 129, 27, 0.08);
  border-left: 3px solid var(--orange);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-soft);
  margin: 0;
}
.form-required {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.event-form label {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.event-form label.full { width: 100%; }
.req { color: var(--orange); margin-left: 2px; }
.event-form input,
.event-form select,
.event-form textarea {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--text);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  outline: none;
  transition: border-color .2s ease;
  text-transform: none;
  letter-spacing: normal;
}
.event-form textarea { resize: vertical; min-height: 100px; }
.event-form input:focus,
.event-form select:focus,
.event-form textarea:focus { border-color: var(--orange); }
.event-form select { appearance: none; cursor: pointer; }
.event-form option { background: var(--bg-2); }
.form-privacy { font-size: 12px; color: var(--text-mute); margin: 8px 0 0; }
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 15px;
}
.form-success { background: rgba(241, 129, 27, 0.15); color: var(--orange-bright); border: 1px solid var(--orange); }
.form-error { background: rgba(255, 80, 80, 0.1); color: #ff8a8a; border: 1px solid #ff8a8a; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section-y) 0; background: var(--bg); }
.faq p { color: var(--text-soft); margin: 0 0 18px; }
.faq .text-link { margin-bottom: 48px; }
.faq-list { list-style: none; margin: 0; padding: 0; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 24px 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: left;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .3s ease;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item.is-open .faq-icon::after { transform: scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--text-soft);
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-a p { margin: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  padding: var(--section-y) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta .two-col { align-items: center; }
.cta-art {
  aspect-ratio: 1 / 1;
  max-width: 320px;
  justify-self: center;
}
.cta-text p { color: var(--text-soft); margin: 0 0 24px; font-size: 18px; }
.cta-text a { color: var(--orange); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--section-y) 0; background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 48px;
}
.contact h4 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: var(--orange);
}
.contact p { margin: 0 0 8px; color: var(--text-soft); }
.contact a { color: var(--text); }
.contact a:hover { color: var(--orange); }
.hours {
  list-style: none; margin: 0; padding: 0;
}
.hours li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--text-soft);
}
.hours li:last-child { border-bottom: 1px solid var(--line); }
.hours li span:last-child { color: var(--text); white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 40px 0;
  background: #000;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand img { height: 40px; width: auto; }
.copyright {
  margin: 0;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.socials { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  transition: all .2s ease;
}
.socials a:hover { color: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .topbar-right .addr,
  .topbar-right .lang { display: none; }
  .facility-list { grid-template-columns: repeat(2, 1fr); }
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .ig-1 { grid-column: span 4; grid-row: span 2; }
  .ig-2 { grid-column: span 2; }
  .ig-3 { grid-column: span 2; }
  .ig-4 { grid-column: span 2; }
  .ig-5 { grid-column: span 2; }
  .ig-6 { grid-column: span 2; }
  .ig-7 { grid-column: span 2; }
  .ig-8 { grid-column: span 4; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .topbar { grid-template-columns: auto 1fr; }
  .topbar-center { display: none; }
  .topbar-right { gap: 10px; }
  .topbar-right .contact-line { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 40px;
  }
  .hero-img.desktop { display: none; }
  .hero-img.mobile { display: block; }
  .two-col { grid-template-columns: 1fr; }
  .facility-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .image-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .ig-1, .ig-2, .ig-8 { grid-column: span 2; grid-row: span 2; }
  .ig-3, .ig-4, .ig-5, .ig-6, .ig-7 { grid-column: span 1; grid-row: span 1; }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .value { grid-template-columns: 50px 1fr; gap: 16px; }
  .value-num { font-size: 36px; }
}

@media (max-width: 480px) {
  .brand-mark img { height: 36px; }
  .image-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ig-1, .ig-2, .ig-3, .ig-4, .ig-5, .ig-6, .ig-7, .ig-8 { grid-column: span 1; grid-row: span 1; }
  .hero-title { font-size: 56px; }
}
