:root {
  --accent-light: #f05a5a;
  --accent: #a80505;
  --accent-dark: #820404;
  --accent-darker: #5c0303;
  --gray-light: #121111;
  --white: #e7e7e7;
  --gold: #e0a323;
  --title: "Antonio", sans-serif;
  --body: "Lato", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #000;
  color: var(--white);
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  background: #000;
}

.site-header {
  position: absolute;
  top: 0;
  z-index: 20;
  width: 100%;
  overflow: hidden;
  color: #fff;
}

.hiring-bar {
  display: flex;
  justify-content: center;
  padding: 4px 24px;
  background: rgb(183 10 10 / 75%);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.nav-row {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgb(0 0 0 / 25%);
}

.header-logo {
  width: 182px;
}

.desktop-nav {
  display: none;
  gap: 16px;
  font-family: var(--title);
  font-size: 20px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  text-align: center;
}

.desktop-nav a::after {
  display: block;
  width: 0;
  height: 8px;
  margin: 4px auto 0;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  width: 8px;
  opacity: 1;
}

.menu-button,
.close-menu {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-button span,
.close-menu span {
  display: block;
  width: 24px;
  height: 4px;
  margin: 2px 0;
  border-radius: 1px;
  background: currentcolor;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 75%);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 75%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 176px 8px 16px;
  background: var(--accent-darker);
  color: #fff;
  font-family: var(--title);
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.mobile-panel .canopy {
  position: absolute;
  top: 0;
  width: 100%;
}

.close-menu {
  position: absolute;
  top: 128px;
  right: 32px;
}

.close-menu span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  margin: 0;
}

.close-menu span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu span:nth-child(2) {
  opacity: 0;
}

.close-menu span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.menu-open .mobile-overlay {
  pointer-events: auto;
}

body.menu-open .mobile-backdrop {
  opacity: 0.75;
}

body.menu-open .mobile-panel {
  transform: translateX(0);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px;
  background: url("/assets/photos/hero-mobile.webp") center / cover no-repeat;
  color: #fff;
}

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

.hero h1 {
  margin: 0;
  font-family: var(--title);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.reviewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
}

.reviewer img {
  width: 40px;
  height: 40px;
}

.button {
  display: inline-flex;
  min-width: 152px;
  height: 48px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 40px;
  border: 2px solid var(--accent-dark);
  border-radius: 4px;
  background: var(--accent-dark);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.button.large {
  min-width: 184px;
}

.button.black {
  border-color: rgb(255 255 255 / 50%);
  background: #000;
}

.button img {
  width: 24px;
  height: 24px;
}

.desktop-directions {
  display: none;
}

.hours-strip {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px;
  overflow: visible;
  background: var(--accent-darker);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-wrap: balance;
}

.mobile-directions {
  position: absolute;
  top: -32px;
}

.contact-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-lines {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-row {
  display: flex;
  gap: 8px;
  white-space: pre-wrap;
}

.desktop-label {
  display: none;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}

.info-row span {
  line-height: 1.25;
}

.info-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hours-row img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.indent {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.divider {
  display: block;
  align-self: stretch;
  width: 1px;
  height: auto;
  background: rgb(255 255 255 / 25%);
}

.section-stack {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.section-title {
  margin: 0;
  font-family: var(--title);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  color: var(--accent-light);
  font-family: var(--title);
  font-size: 18px;
  font-weight: 600;
}

.embellishment {
  width: 156px;
}

.about {
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-copy {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  background:
    linear-gradient(rgb(19 17 17 / 30%), rgb(19 17 17 / 30%)),
    url("/assets/photos/bar.webp") center / cover no-repeat;
  background-blend-mode: color;
  color: #fff;
}

.stamp {
  position: absolute;
  top: 24px;
  right: -16px;
  display: none;
  width: 144px;
  opacity: 0.5;
  filter: brightness(0.75);
}

.body-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.about-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.specialties {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 570px;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  background: #000;
  color: #fff;
}

.center-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.specialty-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.specialty-spacer {
  display: none;
}

.specialty-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.specialty-copy > div {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 24px;
}

.specialty-copy h3 {
  margin: 0;
  font-family: var(--title);
  font-size: 20px;
  font-weight: 400;
  text-transform: capitalize;
}

.muted {
  color: rgb(255 255 255 / 70%);
  font-weight: 300;
}

.specialty-mobile-image {
  width: 100%;
  margin: 0 auto;
}

.specialty-copy .button {
  align-self: center;
}

.atmosphere {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 96px;
  overflow: hidden;
}

.atmosphere-copy-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.atmosphere-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  color: #fff;
}

.atmosphere-copy h2 {
  text-transform: capitalize;
  white-space: nowrap;
}

.atmosphere-images {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.atmosphere-images img {
  width: 100%;
  height: auto;
}

.location {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #131111;
}

.location-copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  color: #fff;
  font-size: 16px;
}

.location-copy .center-heading {
  align-items: center;
}

.location-copy .info-row {
  justify-content: flex-start;
  text-align: left;
}

.location-copy strong {
  font-weight: 600;
}

.location-copy .muted {
  color: rgb(255 255 255 / 60%);
}

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

.location-hours .muted span:last-child {
  white-space: pre-wrap;
}

.location-copy .button {
  align-self: center;
}

.map {
  width: 100%;
  height: 572px;
  border: 0;
}

.reviews {
  position: relative;
  display: flex;
  min-height: 572px;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 24px;
  color: #fff;
}

.review-track {
  position: relative;
  display: flex;
  width: 100%;
  height: 270px;
  justify-content: center;
}

.review-card {
  position: absolute;
  display: none;
  width: 100%;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 500ms ease, transform 500ms ease;
}

.review-card.active {
  display: flex;
  opacity: 1;
}

.balloon {
  position: relative;
  display: flex;
  width: 260px;
  height: 143px;
  align-items: center;
  justify-content: center;
}

.balloon img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
}

.balloon p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 4px 56px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.review-person {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
}

.review-person img {
  width: 60px;
  height: 60px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 8px;
  height: 8px;
  border: 2px solid rgb(255 255 255 / 50%);
  border-radius: 999px;
}

.dots span.active {
  background: #fff;
}

.follow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 24px 160px;
  color: #fff;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.socials img {
  width: 32px;
  height: 32px;
}

.photo-grid {
  display: grid;
  width: 100%;
  max-width: 1600px;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 8px;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.spotlight-image {
  cursor: zoom-in;
}

.image-viewer {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.image-viewer::backdrop {
  background: rgb(0 0 0 / 90%);
}

.image-viewer-panel {
  display: grid;
  width: 100vw;
  height: 100vh;
  place-items: center;
  padding: 16px;
}

.image-viewer img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
}

.image-viewer-close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-weight: 900;
}

.site-footer {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-bottom: 48px;
  background: var(--accent-darker);
  color: #fff;
}

.canopy-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.canopy-row img {
  width: 8%;
  min-width: 72px;
  filter: brightness(0.8);
}

.footer-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 0 40px;
}

.footer-logo {
  width: 247px;
}

.footer-inner p {
  margin: 0;
  font-size: 12px;
}

.page-hero {
  position: relative;
  display: flex;
  height: 360px;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 8px;
  overflow-x: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.menu-hero {
  background-image: url("/assets/photos/cocktails-mobile.webp");
}

.promos-hero,
.application-hero {
  background-image: url("/assets/photos/promos-mobile.webp");
}

.page-hero h1 {
  margin: 0;
  padding: 0 24px;
  font-family: var(--title);
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.section-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  font-family: var(--title);
}

.list-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 24px;
  background: #000;
}

.list-section.alt {
  background: var(--gray-light);
}

.list-section h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--title);
  font-size: 36px;
  font-weight: 400;
}

.list-section .eyebrow {
  margin-bottom: 0;
}

.items {
  display: flex;
  flex-flow: row wrap;
  gap: 48px;
}

.item {
  display: flex;
  min-width: 192px;
  gap: 24px;
  font-family: var(--title);
}

.item-image {
  position: relative;
  flex-shrink: 0;
}

.item-image img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 2px;
  object-fit: cover;
}

.item-image::after {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 0;
  width: 64px;
  height: 64px;
  border-radius: 2px;
  background: var(--accent-darker);
  content: "";
}

.item h3 {
  margin: 0;
  color: var(--accent-light);
  font-family: var(--title);
  font-size: 24px;
  font-weight: 400;
}

.item p {
  margin: 0.75em 0 0;
  color: #fff;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.45;
}

.application {
  display: flex;
  justify-content: center;
  padding: 48px 24px;
  background: #000;
  color: #fff;
}

.application form {
  display: flex;
  width: min(100%, 672px);
  flex-direction: column;
  gap: 24px;
}

.application h2 {
  margin: 0 0 16px;
  font-family: var(--title);
  font-size: 32px;
  text-align: center;
}

.application p {
  margin: 0 0 32px;
  color: #d1d5db;
  font-size: 18px;
  text-align: center;
}

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

.field label {
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  line-height: 1.4;
}

.field input:focus,
.field textarea:focus {
  border-color: #6b7280;
  background: #fff;
  outline: none;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--accent-dark);
  color: #fff;
  text-align: center;
  font-weight: 700;
}

#application-success:target,
#application-error:target {
  display: block;
}

#application-success {
  background: #16a34a;
}

@media (min-width: 300px) {
  .hero h1 {
    font-size: 36px;
  }

  .page-hero h1 {
    text-align: left;
  }

  .hours-strip {
    gap: 24px;
    padding: 24px;
    font-size: 12px;
  }

  .section-stack {
    gap: 160px;
  }

  .section-title {
    font-size: 48px;
  }

  .body-copy {
    font-size: 16px;
  }

  .stamp {
    display: block;
  }

  .specialty-copy h3 {
    font-size: 24px;
  }

  .balloon {
    width: 352px;
  }

  .balloon p {
    padding: 0 16px 24px;
    font-size: 18px;
  }

  .item {
    min-width: 320px;
  }

  .item-image img,
  .item-image::after {
    width: 144px;
    height: 144px;
  }
}

@media (min-width: 640px) {
  .hiring-bar {
    font-size: 16px;
  }

  .header-logo {
    width: 247px;
  }

  .desktop-directions {
    display: inline-flex;
  }

  .mobile-directions {
    display: none;
  }

  .hours-strip {
    font-size: 16px;
  }

  .contact-lines {
    width: auto;
  }

  .specialties {
    min-height: 400px;
    justify-content: flex-start;
    background: url("/assets/drinks/lit-stock-large.png") center / cover no-repeat;
  }

  .specialty-item {
    flex-direction: row;
  }

  .specialty-spacer {
    display: block;
    width: 50%;
  }

  .specialty-copy {
    width: 50%;
    justify-content: center;
  }

  .specialty-mobile-image {
    display: none;
  }

  .specialty-copy .button {
    align-self: flex-start;
    margin-left: 24px;
  }

  .atmosphere {
    gap: 96px;
  }

  .atmosphere-images {
    flex-direction: row;
  }

  .atmosphere-images img {
    width: 33.333%;
  }

  .reviews .section-title br {
    display: none;
  }

  .review-card {
    display: flex;
    opacity: 0;
  }

  .review-card.left,
  .review-card.right {
    opacity: 1;
  }

  .review-card.left {
    transform: translateX(-384px);
  }

  .review-card.right {
    transform: translateX(384px);
  }

  .review-card.active {
    opacity: 1;
    transform: translateX(0);
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .photo-grid img {
    height: auto;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  * {
    --sb-track-color: #231e1e;
    --sb-thumb-color: #a22626;
    --sb-size: 10px;
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }

  *::-webkit-scrollbar {
    width: var(--sb-size);
  }

  *::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 10px;
  }

  *::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 10px;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }

  .location {
    flex-direction: row;
    align-items: center;
  }

  .location-copy {
    width: 50%;
    min-height: 572px;
    justify-content: center;
    gap: 24px;
    font-size: 18px;
  }

  .location-copy .center-heading {
    align-items: flex-start;
  }

  .location-copy .button {
    align-self: flex-start;
  }

  .map-wrap {
    flex: 1;
  }

  .menu-hero {
    background-image: url("/assets/photos/cocktails.webp");
  }

  .promos-hero,
  .application-hero {
    background-image: url("/assets/photos/promos.webp");
  }
}

@media (min-width: 1024px) {
  .nav-row,
  .hiring-bar,
  .hero,
  .about-copy,
  .list-section {
    padding-right: 5%;
    padding-left: 5%;
  }

  .desktop-nav {
    gap: 64px;
  }

  .hero {
    background-image: url("/assets/photos/hero-desktop.webp");
  }

  .hero h1 {
    font-size: 48px;
    line-height: 64px;
  }

  .hero-copy {
    align-self: flex-start;
  }

  .hero h1 {
    text-align: left;
  }

  .page-hero h1 {
    padding-right: 0;
    padding-left: 0;
  }

  .reviewer {
    justify-content: flex-start;
  }

  .hours-lines {
    gap: 0;
  }

  .hours-row {
    gap: 16px;
  }

  .hours-row:first-child {
    gap: 8px;
  }

  .info-row img {
    width: 32px;
    height: 32px;
  }

  .contact-lines {
    flex-direction: row;
    gap: 24px;
  }

  .contact-lines .info-row span {
    white-space: nowrap;
  }

  .desktop-label {
    display: block;
  }

  .contact-lines .desktop-divider {
    display: block;
    height: 56px;
    width: 1px;
    background: rgb(255 255 255 / 25%);
  }

  .section-stack {
    gap: 200px;
  }

  .about {
    flex-direction: row-reverse;
  }

  .about-copy {
    min-height: 656px;
    flex: 1;
  }

  .about-photo {
    width: 50%;
    height: auto;
    max-width: none;
  }

  .stamp {
    top: 40px;
    right: -48px;
    width: 208px;
  }

  .section-title {
    font-size: 60px;
  }

  .eyebrow {
    font-size: 20px;
  }

  .body-copy {
    font-size: 18px;
  }

  .specialties {
    min-height: 656px;
  }

  .atmosphere-copy {
    flex-direction: row;
    gap: 72px;
    padding-right: 5%;
    padding-left: 5%;
  }

  .atmosphere-copy .body-copy {
    max-width: 400px;
  }

  .location-copy {
    width: 40%;
  }

  .item {
    width: 440px;
  }

  .item-image img,
  .item-image::after {
    width: 176px;
    height: 176px;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (min-width: 1280px) {
  .nav-row,
  .hiring-bar,
  .hero,
  .list-section,
  .page-hero {
    padding-right: 15%;
    padding-left: 15%;
  }

  .desktop-nav {
    font-size: 24px;
  }

  .hero {
    gap: 24px;
  }

  .desktop-directions {
    align-self: flex-start;
  }

  .hero h1 {
    font-size: 60px;
    line-height: 80px;
  }

  .about-copy {
    min-height: 800px;
    padding-right: 8%;
    padding-left: 8%;
  }

  .about-photo {
    width: 50%;
  }

  .specialties {
    min-height: 700px;
  }

  .specialty-copy {
    padding-top: 64px;
  }

  .atmosphere-copy .body-copy {
    max-width: 540px;
  }
}

@media (min-width: 1536px) {
  .nav-row,
  .hiring-bar,
  .hero,
  .list-section {
    padding-right: 20%;
    padding-left: 20%;
  }

  .location-copy {
    padding-left: 12%;
  }

  .specialties {
    max-width: 2000px;
    min-height: 800px;
    margin: 0 auto;
  }

  .specialties::before,
  .specialties::after {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 50%;
    height: 100%;
    pointer-events: none;
    content: "";
  }

  .specialties::before {
    left: 0;
    background: linear-gradient(90deg, #000 25.14%, rgb(0 0 0 / 0%) 84.96%);
  }

  .specialties::after {
    right: 0;
    background: linear-gradient(-90deg, #000 25.14%, rgb(0 0 0 / 0%) 84.96%);
  }

  .specialty-copy {
    max-width: 630px;
  }

  .atmosphere {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .atmosphere-copy-wrap,
  .atmosphere-images {
    width: 50%;
  }

  .atmosphere-copy {
    width: 50%;
    flex-direction: column;
    padding: 0;
  }

  .atmosphere-copy .body-copy {
    max-width: 740px;
  }

  .atmosphere-images img {
    max-width: 400px;
    max-height: 400px;
  }

  .stamp {
    width: 360px;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }

  .site-footer {
    gap: 32px;
    padding-bottom: 32px;
  }
}
