/*
Theme Name: Libe
Theme URI: https://example.com/
Description: One-page artist site theme for Libe based on her Canva mock-up.
Version: 0.1.0
Author: Libe's team
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
Text Domain: libe
*/

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-book-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham";
  src: url("assets/fonts/gotham-black-webfont.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham Ultra";
  src: url("assets/fonts/gotham-ultra-webfont.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Horizon";
  src: url("assets/fonts/Horizon.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Horizon Outlined";
  src: url("assets/fonts/Horizon_Outlined.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-muted: #a8a8a8;
  --color-panel: #f7f7f4;
  --color-red: #fa1712;
  --page-pad: clamp(18px, 5vw, 60px);
  --content-max: 1120px;
  --font-main: "Gotham", "Montserrat", "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --font-display: "Horizon", "Gotham Ultra", "Gotham", "Montserrat", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-main);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  background: #000;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  transform: none;
  padding: clamp(24px, 4.4vw, 48px) var(--page-pad);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(116px, 10.7vw, 142px);
  min-height: clamp(50px, 4.8vw, 64px);
  padding: 11px 23px;
  border: 3px solid currentColor;
  background: transparent;
  color: var(--color-white);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.brand-logo {
  width: clamp(78px, 9vw, 106px);
  height: auto;
  object-fit: contain;
}

.brand-logo--solid {
  width: clamp(78px, 9.5vw, 106px);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.55vw, 18px);
}

.social-link {
  display: inline-flex;
  width: clamp(36px, 4vw, 52px);
  height: clamp(36px, 4vw, 52px);
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero {
  position: relative;
  min-height: 0;
  aspect-ratio: 1800 / 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 180px var(--page-pad) 42px;
  margin-bottom: clamp(25px, 5.3vh, 64px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    var(--hero-image) center center / 100% auto no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 26px;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section {
  --section-mark-offset: clamp(18px, 3vw, 36px);
  --section-mark-size: clamp(42px, 5.6vw, 66px);

  position: relative;
  padding: calc(var(--section-mark-offset) + var(--section-mark-size) + var(--section-mark-offset)) var(--page-pad) clamp(14px, 2.2vw, 30px);
}

.section--compact {
  padding-top: clamp(18px, 2.7vw, 32px);
}

.section__inner {
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.section-title {
  margin: 0 0 clamp(34px, 5vw, 58px);
  text-align: center;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
}

#live .section-title,
#past-title,
#gallery-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(1.55rem, 2.35vw, 2.25rem);
}

.section-logomark {
  position: absolute;
  top: var(--section-mark-offset);
  left: clamp(26px, 8vw, 98px);
  width: var(--section-mark-size);
  height: auto;
}

.section-logomark-link {
  display: block;
}

.section-logomark img {
  width: 100%;
  height: auto;
}

.mailing {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.mailing .brand-logo {
  width: 96px;
}

.mailing h2 {
  margin: 12px 0 -12px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
  font-weight: 300;
  text-transform: uppercase;
}

.diamond-e {
  position: relative;
  display: inline-block;
}

.diamond-e::before {
  content: "";
  position: absolute;
  left: 57%;
  top: -0.22em;
  width: 0.54em;
  height: 0.34em;
  background: url("assets/brand/dots.png") center / contain no-repeat;
  transform: translateX(-50%);
}

.mailing p {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.emailoctopus-form-test {
  width: min(100%, 454px);
  margin-top: 8px;
  font-family: var(--font-main) !important;
}

.emailoctopus-form-test *,
.emailoctopus-form-test label,
.emailoctopus-form-test [class*="label"],
.emailoctopus-form-test [class*="Label"] {
  font-family: var(--font-main) !important;
}

.emailoctopus-form-test label,
.emailoctopus-form-test [class*="label"],
.emailoctopus-form-test [class*="Label"] {
  display: block;
  margin-bottom: 7px !important;
  text-align: left;
}

.emailoctopus-form-test input[type="text"],
.emailoctopus-form-test input[type="email"],
.emailoctopus-form-test input:not([type]),
.emailoctopus-form-test [class*="input"],
.emailoctopus-form-test [class*="Input"] {
  width: 100% !important;
  min-height: 46px !important;
  border: 1px solid rgba(255, 255, 255, 0.76) !important;
  border-radius: 8px !important;
  background: #000 !important;
  color: #fff !important;
  padding: 9px 13px !important;
  font-family: var(--font-main) !important;
  font-size: 0.95rem !important;
}

.emailoctopus-form-test input::placeholder {
  color: #9a9a9a !important;
}

.emailoctopus-form-test button,
.emailoctopus-form-test input[type="submit"],
.emailoctopus-form-test [class*="button"],
.emailoctopus-form-test [class*="Button"] {
  min-height: 50px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--color-red) !important;
  color: #fff !important;
  padding: 8px 24px !important;
  font-family: var(--font-main) !important;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem) !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease !important;
}

.emailoctopus-form-test button:hover,
.emailoctopus-form-test button:focus-visible,
.emailoctopus-form-test input[type="submit"]:hover,
.emailoctopus-form-test input[type="submit"]:focus-visible,
.emailoctopus-form-test [class*="button"]:hover,
.emailoctopus-form-test [class*="button"]:focus-visible,
.emailoctopus-form-test [class*="Button"]:hover,
.emailoctopus-form-test [class*="Button"]:focus-visible {
  background: #d91410 !important;
}

.mailing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  width: min(100%, 454px);
}

.mailing-actions .social-links {
  flex: 0 0 auto;
}

.mailing-actions__text {
  display: grid;
  gap: 4px;
  justify-items: start;
  flex: 0 1 auto;
}

.mailing-actions .emailoctopus-powered-by {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  flex: 0 0 100% !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  color: #aaa;
  font-family: var(--font-main) !important;
  font-size: clamp(0.7rem, 0.9vw, 0.82rem) !important;
  line-height: 1.2 !important;
  text-align: left;
}

.mailing-actions .emailoctopus-powered-by * {
  font-family: var(--font-main) !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.mailing-actions .emailoctopus-powered-by a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mailing-actions .emailoctopus-powered-by a:hover,
.mailing-actions .emailoctopus-powered-by a:focus-visible {
  color: #fff;
}

.mailing-actions__privacy {
  color: #aaa;
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mailing-actions__privacy:hover,
.mailing-actions__privacy:focus-visible {
  color: #fff;
}

.signup-form {
  display: grid;
  gap: 24px;
  width: min(100%, 454px);
  margin-top: 8px;
  margin-bottom: -8px;
  text-align: left;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 1.25rem;
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: #000;
  color: #fff;
  padding: 11px 14px;
}

.required {
  color: var(--color-red);
}

.submit-button {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 400;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #d91410;
}

.mailing .privacy-note {
  margin-top: -8px;
  color: #747474;
  font-size: clamp(0.88rem, 1.25vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0.035em;
}

.mailing .social-links,
.site-footer .social-links {
  gap: clamp(9px, 1.2vw, 14px);
}

.mailing .social-link,
.site-footer .social-link {
  width: clamp(28px, 3vw, 38px);
  height: clamp(28px, 3vw, 38px);
}

.show-carousel {
  --show-card-width: min(570px, calc(100vw - (var(--page-pad) * 2) - 120px));

  display: grid;
  grid-template-columns: 44px var(--show-card-width) 44px;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 28px);
}

.show-carousel--single {
  grid-template-columns: var(--show-card-width);
}

.show-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--show-card-width);
  gap: clamp(24px, 4vw, 48px);
  width: var(--show-card-width);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.show-carousel--single .show-carousel__track {
  overflow: visible;
}

.show-carousel__track::-webkit-scrollbar {
  display: none;
}

.show-carousel__button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease;
}

.show-carousel__button:hover,
.show-carousel__button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.show-carousel__button:disabled {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.show-carousel__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.show-carousel__button--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.show-carousel__button--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.event-card {
  display: grid;
  background: var(--color-panel);
  color: #000;
  text-align: left;
  scroll-snap-align: center;
}

.event-card__image-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.event-card__image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  pointer-events: none;
}

.event-card__image {
  aspect-ratio: 568 / 380;
  width: 100%;
  object-fit: cover;
}

.event-card__body {
  display: grid;
  gap: 8px;
  min-height: 78px;
  padding: 16px 18px;
}

.event-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.event-card h3 a {
  text-decoration: none;
}

.event-card h3 a:hover,
.event-card h3 a:focus-visible,
.event-card__meta a:hover,
.event-card__meta a:focus-visible {
  text-decoration: underline;
}

.event-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}

.event-card__meta {
  display: block;
  color: #777;
  font-size: 0.82rem;
  line-height: 1.45;
}

.event-card__meta a {
  text-decoration: none;
}

.event-card__date {
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.8vw, 56px);
  align-items: start;
  width: min(100%, 840px);
  margin: 0 auto;
}

.folder-card {
  display: grid;
  justify-items: center;
  gap: 16px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.folder-image {
  width: min(100%, 188px);
  aspect-ratio: 1;
  object-fit: cover;
}

.folder-icon {
  position: relative;
  width: min(100%, 170px);
  aspect-ratio: 1.18;
}

.folder-icon::before,
.folder-icon::after {
  content: "";
  position: absolute;
  border: 8px solid rgba(0, 0, 0, 0.28);
  background: #76817e;
}

.folder-icon::before {
  inset: 22px 0 0 12px;
  transform: translate(18px, -16px);
  opacity: 0.7;
}

.folder-icon::after {
  inset: 32px 14px 0 0;
}

.folder-tab {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 10px;
  width: 58px;
  height: 34px;
  background: #76817e;
  border: 8px solid rgba(0, 0, 0, 0.28);
  border-bottom: 0;
}

.folder-label {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  font-weight: 400;
}

.site-footer {
  --footer-gap: clamp(58px, 8vw, 88px);

  display: grid;
  justify-items: center;
  gap: var(--footer-gap);
  padding: var(--footer-gap) var(--page-pad) 52px;
}

.site-footer .social-links {
  justify-content: center;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0s linear 0s;
}

.modal__panel {
  position: relative;
  width: min(100%, 960px);
  max-height: calc(100vh - 56px);
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: clamp(24px, 5vw, 44px);
  transform: translateY(12px) scale(0.985);
  transition: transform 220ms ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal__image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  margin-bottom: 24px;
}

.modal__title {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

.modal__copy {
  color: #ddd;
  line-height: 1.65;
}

.modal__copy a {
  color: inherit;
  text-underline-offset: 0.18em;
  transition: color 160ms ease;
}

.modal__copy a:hover,
.modal__copy a:focus-visible {
  color: #fff;
}

.gallery-viewer {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.gallery-viewer__frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background: #000;
  overflow: hidden;
}

.gallery-viewer__image {
  grid-area: 1 / 1;
  width: 100%;
  max-height: min(54vh, 560px);
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.gallery-viewer__image.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 220ms ease,
    visibility 0s linear 0s;
}

.gallery-viewer__button {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.gallery-viewer__button:hover,
.gallery-viewer__button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.gallery-viewer__button:disabled {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.gallery-viewer__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.gallery-viewer__button--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.gallery-viewer__button--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.gallery-viewer__count {
  grid-column: 2;
  color: #aaa;
  font-size: 0.82rem;
  text-align: center;
}

.about-page,
.content-page {
  min-height: 100vh;
  padding: 46px var(--page-pad) 92px;
}

.about-page__header,
.content-page__header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: clamp(60px, 10vw, 120px);
}

.content-page__home {
  justify-self: start;
}

.content-page__header .brand-logo {
  justify-self: center;
}

.about-page__content,
.content-page__content {
  width: min(100%, 780px);
  margin: 0 auto;
}

.about-page__content {
  text-align: center;
}

.content-page__content {
  color: #ddd;
}

.about-page h1,
.content-page h1 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.content-page h1 {
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
}

.about-page p {
  color: #ddd;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.content-page a {
  color: #fff;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 18px;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .site-nav,
  .social-links {
    justify-content: center;
  }

  .site-header .site-nav {
    order: 2;
  }

  .site-header .brand-logo {
    order: 1;
  }

  .site-header .social-links {
    order: 3;
  }

  .hero {
    min-height: 660px;
    aspect-ratio: auto;
    padding-top: 270px;
    padding-bottom: 38px;
    margin-bottom: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.26)),
      var(--hero-image) 47% center / auto 100% no-repeat;
  }

  .hero__content {
    gap: 20px;
  }

  .hero__title {
    font-size: clamp(1.55rem, 5vw, 2.15rem);
    max-width: 12em;
  }

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

  #gallery-title {
    margin-bottom: clamp(42px, 9vw, 64px);
  }

  .show-carousel {
    --show-card-width: min(570px, calc(100vw - (var(--page-pad) * 2) - 96px));

    grid-template-columns: 38px var(--show-card-width) 38px;
    gap: 10px;
  }

  .show-carousel--single {
    grid-template-columns: var(--show-card-width);
  }

  .show-carousel__button {
    width: 38px;
    height: 38px;
  }

  .gallery-grid {
    gap: 48px;
  }
}

@media (max-width: 600px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .outline-button {
    min-width: 112px;
    min-height: 48px;
    padding: 10px 16px;
    border-width: 2px;
    font-size: 0.98rem;
  }

  .site-header {
    padding-top: 18px;
  }

  .site-header__inner {
    gap: 14px;
  }

  .content-page__header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .content-page__home {
    justify-self: center;
    order: 2;
  }

  .content-page__header .brand-logo {
    order: 1;
  }

  .content-page__header-spacer {
    display: none;
  }

  .site-nav {
    gap: 14px;
  }

  .site-header .brand-logo {
    width: 78px;
  }

  .site-header .social-link {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: 612px;
    padding-top: 245px;
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32)),
      var(--hero-image) 42% center / auto 100% no-repeat;
  }

  .hero__content {
    gap: 18px;
  }

  .hero__title {
    width: min(100%, 330px);
    max-width: 10.8em;
    font-size: clamp(1.28rem, 6vw, 1.65rem);
    line-height: 1.05;
    text-wrap: balance;
  }

  .mailing h2 {
    max-width: 10.5em;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .section-logomark {
    opacity: 0.7;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .gallery-viewer {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 10px;
  }

  .gallery-viewer__button {
    width: 38px;
    height: 38px;
  }
}
