@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: clip; /* clip évite le bug iOS où les <select> s'affichent en haut de page */
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #111111;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

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

a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover, a:focus {
  color: #d4af37;
}
a:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

ul,
ol {
  margin: 0;
  padding-left: 1.5rem;
}

p {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  line-height: 1.3;
  color: #111111;
  font-weight: 400;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.125rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.875rem;
}

h6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #111111;
  background-color: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  padding: 0.5rem 0.75rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #666666;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}
input:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button,
input[type=submit],
input[type=button] {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  background-color: rgb(1.7, 1.7, 1.7);
  border-color: rgb(1.7, 1.7, 1.7);
}
button:focus-visible,
input[type=submit]:focus-visible,
input[type=button]:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}
button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button.-is-destructive,
input[type=submit].-is-destructive {
  background-color: #d4183d;
  border-color: #d4183d;
  color: #ffffff;
}
button.-is-destructive:hover,
input[type=submit].-is-destructive:hover {
  background-color: rgb(189.093220339, 21.406779661, 54.4088983051);
  border-color: rgb(189.093220339, 21.406779661, 54.4088983051);
}

.u-text-center {
  text-align: center;
}

.u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
}

.u-heading--eyebrow {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #666666;
}

.l-container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 2rem;
}

.l-section {
  padding-block: clamp(2rem, 4vw, 3rem);
  background-color: #ffffff;
}
.l-section--light {
  background-color: #ffffff;
  color: #111111;
}
.l-section--muted {
  background-color: #f5f5f5;
  color: #111111;
}
.l-section--dark {
  background-color: #111111;
  color: #ffffff;
}
.l-section--dark .section-title,
.l-section--dark .section-title__subtitle {
  color: #ffffff;
}
.l-section__header {
  margin-bottom: 1.5rem;
  text-align: left;
}
.l-section__header--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.l-grid, .l-grid--2 {
  display: grid;
  gap: 2rem;
}

/* Variante 2 colonnes */
.l-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Adaptation mobile : on écrase la définition mais
   on ne met pas .l-grid--2 *dedans* (pas de nesting) */
@media (max-width: 768px) {
  .l-grid--2 {
    grid-template-columns: 1fr;
  }
}
.site-header {
  padding-block: 1rem;
  background-color: #ffffff;
  color: #111111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-main {
  min-height: 100vh;
}

.site-footer {
  padding-block: 1.5rem;
  background-color: #111111;
  color: #ffffff;
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home .site-main,
.front-page .site-main {
  padding-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary {
  background-color: #111111;
  color: #ffffff;
}
.btn--primary:hover, .btn--primary:focus {
  background-color: rgb(4.25, 4.25, 4.25);
}
.btn--secondary {
  background-color: #d4af37;
  color: #111111;
}
.btn--secondary:hover, .btn--secondary:focus {
  background-color: rgb(198.7654320988, 161.9938271605, 42.7345679012);
}
.btn--ghost {
  background-color: transparent;
  color: #111111;
  border-color: #111111;
}
.btn--ghost:hover, .btn--ghost:focus {
  background-color: #111111;
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card--media {
  padding: 0;
  overflow: hidden;
}
.card--media .card__image {
  border-radius: 12px 12px 0 0;
}
.card--media .card__body {
  padding: 1rem;
}
.card__image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.card__body {
  flex: 1;
}
.card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.card__meta {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.875rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: none;
}
.section-title__subtitle {
  font-size: 0.875rem;
  color: #666666;
  max-width: 520px;
  margin-top: 0.5rem;
}
.section-title--center {
  text-align: center;
}
.section-title--center .section-title__subtitle {
  margin-inline: auto;
}
.section-title--accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.section-title--accent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  height: 2px;
  background-color: #d4af37;
}

.site-header__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-header__logo {
  margin-right: auto;
}

.site-header__logo-image {
  height: 40px;
  width: auto;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo-text {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #111111;
  transition: opacity 0.2s ease;
  margin-left: 10px;
}
.site-header__logo-text:hover, .site-header__logo-text:focus-visible {
  opacity: 0.7;
}

.site-header__nav {
  right: 0;
  left: auto;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu-link,
.site-header__menu a {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: none;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.site-header__menu-link:hover, .site-header__menu-link:focus-visible,
.site-header__menu a:hover,
.site-header__menu a:focus-visible {
  color: #d4af37;
  outline: none;
}

.site-header__menu-item.current-menu-item > a,
.site-header__menu-item.current_page_item > a {
  color: #d4af37;
}

.site-header__lang {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-header__lang-button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666666;
  transition: color 0.2s ease;
}
.site-header__lang-button:hover, .site-header__lang-button:focus-visible {
  color: #111111;
  outline: none;
}
.site-header__lang-button--active {
  color: #d4af37;
}

.site-header__lang-separator {
  font-size: 0.75rem;
  color: #666666;
}

.site-header__burger {
  display: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}
.site-header__burger:focus, .site-header__burger:active, .site-header__burger:focus-visible {
  background: transparent;
  outline: none;
  box-shadow: none;
}
@media (max-width: 768px) {
  .site-header__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
}

.site-header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #111111;
  transition: all 0.3s ease;
  transform-origin: center;
}

.site-header__burger[aria-expanded=true] .site-header__burger-line {
  background-color: #111111;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: #111111;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded=true] .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: #111111;
}

@media (max-width: 768px) {
  .site-header__inner {
    height: 64px;
    gap: 1rem;
  }
  .site-header__logo-image {
    height: 28px;
  }
  .site-header__logo-text {
    font-size: 1.1rem;
    margin-left: 10px;
  }
  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(320px, 90vw);
    height: 100vh;
    background-color: #ffffff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 2000;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  .site-header__nav.is-open {
    transform: translateX(0);
  }
  .site-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .site-header__menu-link,
  .site-header__menu a {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .site-header__lang {
    gap: 0.5rem;
    margin-top: 0;
  }
}
.site-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header__overlay.is-visible {
  display: block;
  opacity: 1;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  margin-top: 6rem;
  background-color: #ffffff;
}

.site-footer__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__copyright {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: #666666;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-footer__social-link {
  text-decoration: none;
  font-size: 0.75rem;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}
.site-footer__social-link:hover {
  color: #d4af37;
}

.site-footer__social-icon {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
}

.site-footer__legal {
  font-size: 0.75rem;
  text-align: center;
  color: #666666;
  margin-top: 1rem;
}
.site-footer__legal a {
  color: #666666;
  text-decoration: underline;
}
.site-footer__legal a:hover {
  color: #d4af37;
}

.gallery-search {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.gallery-search select,
.gallery-search button {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
  color: #111111;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  min-width: 130px;
}
.gallery-search select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.gallery-search button {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}
.gallery-search button#gallery-reset-btn {
  background-color: transparent;
  color: #111111;
  border-color: rgba(17, 17, 17, 0.08);
}
.gallery-search button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .gallery-search {
    padding: 0 1.5rem;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  .gallery-search select,
  .gallery-search button {
    min-width: 110px;
  }
}
@media (max-width: 576px) {
  .gallery-search {
    padding: 0 1rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-search select,
  .gallery-search button {
    width: 100%;
    min-width: unset;
    padding: 0.65rem 1rem;
    font-size: 1rem;
  }
  .gallery-search select {
    padding-right: 2rem;
  }
}

.artwork-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .artwork-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .artwork-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
}

.artwork-card {
  position: relative;
  cursor: pointer;
}
.artwork-card__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.artwork-card__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #f5f5f5;
  overflow: hidden;
}
.artwork-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.artwork-card__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.artwork-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 576px) {
  .artwork-card__overlay {
    padding: 1.5rem;
  }
}
.artwork-card__info {
  text-align: center;
  max-width: 260px;
  margin: 0 auto;
}
.artwork-card__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
.artwork-card__year, .artwork-card__dimensions, .artwork-card__technique {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0.25rem;
}
.artwork-card__description {
  margin-top: 1rem;
  font-size: 0.8125rem;
}
.artwork-card__lightbox {
  position: absolute;
  inset-block-start: 1.5rem;
  inset-inline-end: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.artwork-card:hover .artwork-card__image {
  transform: scale(1.05);
}
.artwork-card:hover .artwork-card__overlay {
  opacity: 1;
  transform: translateY(0);
}
.artwork-card:hover .artwork-card__lightbox {
  background-color: #d4af37;
  color: #111111;
  border-color: #d4af37;
  transform: scale(1.05);
}

.exhibition-card {
  cursor: pointer;
}
.exhibition-card__image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 1rem;
}
.exhibition-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.exhibition-card:hover .exhibition-card__image {
  transform: scale(1.05);
}
.exhibition-card__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.exhibition-card__meta {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.exhibition-card__status {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.exhibition-card__status--upcoming, .exhibition-card__status--present {
  color: #c8a34a;
}
.exhibition-card__status--past {
  color: rgba(0, 0, 0, 0.4);
}
.exhibition-card__dot {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.4);
}
.exhibition-card__date {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
}
.exhibition-card__title {
  margin-bottom: 0.25rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}
.exhibition-card__location {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.55);
}

.lightbox {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  max-width: min(92vw, 1200px);
  width: 100%;
  padding: 1.25rem;
}
@media (max-width: 576px) {
  .lightbox__wrapper {
    gap: 0.5rem;
    padding: 0.75rem;
  }
}
.lightbox__content {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  position: relative;
}
.lightbox__image {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55);
  border-radius: 6px;
}
.lightbox__caption {
  margin-top: 0.75rem;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
  .lightbox__caption {
    font-size: 0.9rem;
  }
}
.lightbox__counter {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}
@media (max-width: 576px) {
  .lightbox__counter {
    top: 0.75rem;
    font-size: 0.75rem;
  }
}
.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 20;
}
.lightbox__close:hover, .lightbox__close:focus-visible {
  border-color: #d4af37;
  background-color: #d4af37;
  color: #111111;
}
@media (max-width: 576px) {
  .lightbox__close {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.25rem;
  }
}
.lightbox__nav {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lightbox__nav:hover, .lightbox__nav:focus-visible {
  border-color: #d4af37;
  background-color: #d4af37;
  color: #111111;
}
@media (max-width: 576px) {
  .lightbox__nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}
.lightbox__nav[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.protected-image-wrapper {
  position: relative;
  display: inline-block;
}

.protected-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}

.legal-page {
  padding: 4rem 2rem;
  background-color: #ffffff;
  color: #111111;
}
.legal-page .container {
  max-width: 1120px;
  margin-inline: auto;
}
.legal-page h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.25rem;
  margin-bottom: 2rem;
  color: #111111;
  text-transform: none;
}
.legal-page section {
  margin-bottom: 3rem;
}
.legal-page section h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-page section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.legal-page section ul {
  list-style: disc;
  padding-left: 1.5rem;
}
.legal-page section ul li {
  margin-bottom: 0.5rem;
}
.legal-page section a {
  color: #d4af37;
  text-decoration: underline;
}
.legal-page section a:hover {
  text-decoration: none;
}

.site-footer__legal {
  font-size: 0.75rem;
  color: #666666;
  text-align: center;
  margin-top: 1.5rem;
}
.site-footer__legal a {
  color: #666666;
  text-decoration: underline;
  margin: 0 0.25rem;
}
.site-footer__legal a:hover, .site-footer__legal a:focus {
  color: #d4af37;
  text-decoration: none;
}
.site-footer__legal br {
  margin-top: 0.25rem;
  display: block;
}

.page-about {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .page-about {
    padding-block: 6rem 3rem;
  }
}
@media (max-width: 576px) {
  .page-about {
    padding-block: 4rem 2rem;
  }
}
.page-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .page-about__inner {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-about__inner {
    padding-inline: 1rem;
  }
}
.page-about__header {
  text-align: center;
  margin-block-end: 5rem;
}
.page-about__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .page-about__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-about__title {
    font-size: 2rem;
  }
}
.page-about__subtitle {
  margin-top: 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #666666;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.7;
}
.page-about__layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .page-about__layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .page-about__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.page-about__column--portrait {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-about__column--content {
  min-width: 0;
}
.page-about__portrait-wrapper {
  aspect-ratio: 3/4;
  background-color: #f5f5f5;
  overflow: hidden;
}
.page-about__portrait-figure, .page-about__portrait-placeholder {
  width: 100%;
  height: 100%;
}
.page-about__portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-about__portrait-placeholder {
  background-color: #f5f5f5;
}
.page-about__cv {
  margin-top: 1rem;
}
.page-about__cv-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 1.25rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  background-color: transparent;
  color: #111111;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-about__cv-button:hover, .page-about__cv-button:focus-visible {
  border-color: #d4af37;
  color: #111111;
}
.page-about__cv-button--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.page-about__cv-icon {
  font-size: 0.875rem;
}

.page-about-tabs__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 3rem;
  list-style: none;
  padding-left: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .page-about-tabs__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-bottom: 0;
  }
}
.page-about-tabs__item {
  margin: 0;
}
.page-about-tabs__trigger {
  background: none;
  border: 1px solid transparent;
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666666;
  position: relative;
  width: 100%;
  text-align: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-about-tabs__trigger--active, .page-about-tabs__trigger:hover {
  color: #111111;
}
.page-about-tabs__trigger:hover, .page-about-tabs__trigger:focus-visible {
  border-color: #d4af37;
  background-color: transparent;
}
.page-about-tabs__trigger--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  background-color: #d4af37;
}
.page-about-tabs__panels {
  margin-top: 2rem;
}

.page-about-section {
  display: none;
}
.page-about-section--active {
  display: block;
}
.page-about-section__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.page-about-section__content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.9);
}
.page-about-section__content p {
  margin-bottom: 1.25rem;
  color: rgba(17, 17, 17, 0.6);
}
.page-about-section__content ul,
.page-about-section__content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
  color: rgba(17, 17, 17, 0.6);
}
.page-about-section__content li + li {
  margin-top: 0.5rem;
}
.page-about-section__content em {
  font-style: italic;
  color: rgba(17, 17, 17, 0.7);
}

.page-contact {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .page-contact {
    padding-block: 6rem 3rem;
  }
}
@media (max-width: 576px) {
  .page-contact {
    padding-block: 4rem 2rem;
  }
}
.page-contact__header {
  text-align: center;
  margin-block-end: 5rem;
}
.page-contact__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .page-contact__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-contact__title {
    font-size: 2rem;
  }
}
.page-contact__content {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .page-contact__content {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .page-contact__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-contact__content {
    padding-inline: 1rem;
  }
}
.page-contact__details, .page-contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-contact__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.page-contact__details .page-contact__map {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: #f5f5f5;
}
.page-contact__details .page-contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.page-contact__details p {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666666;
  line-height: 1.7;
}
.page-contact__form {
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .page-contact__form {
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-left: 0;
    padding-top: 2.5rem;
  }
}
.page-contact__form p {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #666666;
  font-style: italic;
  line-height: 1.7;
}
.page-contact__form-embed .wpforms-container,
.page-contact__form-embed .fluentform {
  margin: 0;
}
.page-contact__form-embed .wpforms-form,
.page-contact__form-embed .ff-el-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-contact__form-embed .wpforms-field-label,
.page-contact__form-embed .ff-el-input--label label {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #111111;
}
.page-contact__form-embed .wpforms-field,
.page-contact__form-embed .ff-el-group {
  margin: 0;
}
.page-contact__form-embed input[type=text],
.page-contact__form-embed input[type=email],
.page-contact__form-embed input[type=tel],
.page-contact__form-embed textarea,
.page-contact__form-embed select {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
  padding: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: #111111;
}
.page-contact__form-embed textarea {
  min-height: 220px;
  resize: none;
}
.page-contact__form-embed ::placeholder {
  color: #666666;
}
.page-contact__form-embed .wpforms-submit-container {
  margin: 0;
}
.page-contact__form-embed .wpforms-submit,
.page-contact__form-embed .ff-btn-submit {
  border: 1px solid #111111 !important;
  background-color: #111111 !important;
  color: #ffffff !important;
  padding: 1.25rem 3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-contact__form-embed .wpforms-submit:hover,
.page-contact__form-embed .wpforms-submit:focus-visible,
.page-contact__form-embed .wpforms-submit:active,
.page-contact__form-embed .ff-btn-submit:hover,
.page-contact__form-embed .ff-btn-submit:focus-visible,
.page-contact__form-embed .ff-btn-submit:active {
  background-color: #d4af37 !important;
  border-color: #d4af37 !important;
  color: #ffffff !important;
}
.page-contact__form-element {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-contact__input, .page-contact__textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
  padding: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: #111111;
}
.page-contact__input::placeholder, .page-contact__textarea::placeholder {
  color: #666666;
}
.page-contact__textarea {
  min-height: 220px;
  resize: none;
}
.page-contact__button {
  align-self: flex-start;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  padding: 1.25rem 3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  cursor: not-allowed;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-contact__button:hover, .page-contact__button:focus-visible, .page-contact__button:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}
.page-contact__alert {
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.page-contact__alert--success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.page-contact__alert--error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.page-contact__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.page-contact__form-native {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-contact__label {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #111111;
}
.page-contact__label .required {
  color: #d4af37;
}
.page-contact__submit {
  align-self: flex-start;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  padding: 1.25rem 3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-contact__submit:hover, .page-contact__submit:focus-visible {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}
.page-contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-gallery {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .page-gallery {
    padding-block: 6rem 3rem;
  }
}
@media (max-width: 576px) {
  .page-gallery {
    padding-block: 4rem 2rem;
  }
}
.page-gallery__header {
  text-align: center;
  margin-block-end: 4rem;
}
.page-gallery__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .page-gallery__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .page-gallery__title {
    font-size: 2rem;
  }
}
.page-gallery__subtitle {
  margin-top: 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #666666;
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.7;
}
.page-gallery__filters {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding-inline: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .page-gallery__filters {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-gallery__filters {
    padding-inline: 1rem;
  }
}
.page-gallery__filter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.page-gallery__filter-label {
  min-width: 5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666666;
}
.page-gallery__filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.page-gallery__filter-button {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: transparent;
  color: #111111;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-gallery__filter-button:hover, .page-gallery__filter-button:focus-visible {
  border-color: #d4af37;
  background-color: transparent;
}
.page-gallery__filter-button--active {
  border-color: #d4af37;
  color: #111111;
  background-color: transparent;
}

.artwork-detail {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .artwork-detail {
    padding-block: 6rem 3rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .artwork-detail {
    padding-block: 4rem 2rem;
    padding-inline: 1rem;
  }
}
.artwork-detail--news {
  padding-block: 6rem 5rem;
}
@media (max-width: 768px) {
  .artwork-detail--news {
    padding-block: 5rem 3rem;
  }
}
.artwork-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 3rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.artwork-detail__back:hover, .artwork-detail__back:focus-visible {
  color: #111111;
}
.artwork-detail__back-icon {
  font-size: 1rem;
}
.artwork-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .artwork-detail__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .artwork-detail__layout {
    grid-template-columns: 1fr;
  }
}
.artwork-detail__main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.artwork-detail__figure {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.artwork-detail__figure.is-active {
  opacity: 1;
  position: relative;
}
.artwork-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artwork-detail__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.artwork-detail__nav:hover, .artwork-detail__nav:focus-visible {
  background-color: #d4af37;
  border-color: #d4af37;
}
.artwork-detail__nav--prev {
  left: 1rem;
}
.artwork-detail__nav--next {
  right: 1rem;
}
.artwork-detail__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}
.artwork-detail__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.artwork-detail__thumb {
  width: 4.5rem;
  height: 4.5rem;
  border: 2px solid transparent;
  padding: 0;
  background: #f5f5f5;
  cursor: pointer;
  transition: border-color 0.2s ease;
  overflow: hidden;
}
.artwork-detail__thumb:hover, .artwork-detail__thumb:focus-visible {
  border-color: rgba(17, 17, 17, 0.08);
}
.artwork-detail__thumb.is-active {
  border-color: #d4af37;
}
.artwork-detail__thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.artwork-detail__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.artwork-detail__heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.artwork-detail__badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.artwork-detail__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.artwork-detail__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: #f5f5f5;
  color: #666666;
}
.artwork-detail__status--available {
  background-color: #d4af37;
  color: #ffffff;
}
.artwork-detail__status--sold {
  background-color: #f5f5f5;
  color: #666666;
}
.artwork-detail__status--reserved {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #111111;
  color: #ffffff;
}
.artwork-detail__status--present {
  background-color: #d4af37;
  color: #ffffff;
}
.artwork-detail__status--upcoming {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: transparent;
  color: #111111;
}
.artwork-detail__status--past {
  background-color: #f5f5f5;
  color: #666666;
}
.artwork-detail__meta {
  padding-block: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.artwork-detail__meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.artwork-detail__label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0.25rem;
}
.artwork-detail__value {
  font-size: 0.875rem;
  color: #111111;
}
.artwork-detail__description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.artwork-detail__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 300;
  margin: 0;
}
.artwork-detail__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.9);
}
.artwork-detail__text p {
  margin-bottom: 1rem;
}
.artwork-detail__buy {
  width: 100%;
  padding: 1.25rem 2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #f5f5f5;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  cursor: not-allowed;
}
.artwork-detail__zoom {
  margin-top: 6rem;
}
.artwork-detail__zoom-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}
.artwork-detail__zoom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .artwork-detail__zoom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .artwork-detail__zoom-grid {
    grid-template-columns: 1fr;
  }
}
.artwork-detail__zoom-card {
  aspect-ratio: 1/1;
  background-color: #f5f5f5;
  overflow: hidden;
}
.artwork-detail__zoom-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-shop {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .page-shop {
    padding-block: 6rem 3rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-shop {
    padding-block: 4rem 2rem;
    padding-inline: 1rem;
  }
}
.page-shop__header {
  text-align: center;
  margin-bottom: 5rem;
}
.page-shop__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.page-shop__subtitle {
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666666;
}
.page-shop__coming {
  max-width: 600px;
  margin: 0 auto 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-shop__coming-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto;
  border: 1px solid rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.page-shop__coming-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.page-shop__coming-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.9);
}
.page-shop__coming-note {
  font-size: 0.8125rem;
  color: #666666;
  font-style: italic;
}
.page-shop__sections {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.page-shop__section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.page-shop__section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.page-shop__section-subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666666;
}
.page-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .page-shop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .page-shop__grid {
    grid-template-columns: 1fr;
  }
}
.page-shop__card {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-shop__card--placeholder {
  background-color: #f5f5f5;
}
.page-shop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.page-shop__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  background-color: #d4af37;
  color: #ffffff;
  text-align: center;
  width: auto;
  max-width: fit-content;
}

.page-news {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .page-news {
    padding-block: 6rem 3rem;
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-news {
    padding-block: 4rem 2rem;
    padding-inline: 1rem;
  }
}
.page-news__header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-news__title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.page-news__subtitle {
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666666;
}
.page-news__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  margin-bottom: 3rem;
}
.page-news__filter-button {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: transparent;
  color: #111111;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-news__filter-button:hover, .page-news__filter-button:focus-visible {
  border-color: #d4af37;
  background-color: transparent;
}
.page-news__filter-button--active {
  border-color: #d4af37;
  color: #111111;
  background-color: transparent;
}
.page-news__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.page-news__item {
  display: grid;
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.page-news__item:last-child {
  border-bottom: 0;
}
@media (max-width: 768px) {
  .page-news__item {
    grid-template-columns: 1fr;
  }
}
.page-news__media {
  aspect-ratio: 4/3;
  background-color: #f5f5f5;
  overflow: hidden;
}
.page-news__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.page-news__item:hover .page-news__image {
  transform: scale(1.04);
}
.page-news__image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
}
.page-news__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.page-news__item-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0;
}
.page-news__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-news__meta-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #666666;
}
.page-news__meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.page-news__description {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.9);
  margin: 0;
}
.page-news__readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.page-news__readmore:hover, .page-news__readmore:focus-visible {
  color: #d4af37;
  transform: translateX(4px);
}
.page-news__empty {
  text-align: center;
  color: #666666;
}

.single-exhibition {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .single-exhibition {
    padding-block: 6rem 3rem;
  }
}
@media (max-width: 576px) {
  .single-exhibition {
    padding-block: 4rem 2rem;
  }
}
.single-exhibition__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .single-exhibition__inner {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .single-exhibition__inner {
    padding-inline: 1rem;
  }
}
.single-exhibition__header {
  text-align: center;
  margin-bottom: 3rem;
}
.single-exhibition__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.single-exhibition__status {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #666666;
}
.single-exhibition__media {
  aspect-ratio: 4/3;
  background-color: #f5f5f5;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.single-exhibition__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-exhibition__meta {
  display: grid;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
  text-align: center;
}
.single-exhibition__meta-item {
  display: inline-flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #666666;
  justify-content: center;
}
.single-exhibition__meta-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.single-exhibition__intro {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: #111111;
}
.single-exhibition__content {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.9);
}
.single-exhibition__content p {
  margin-bottom: 1.25rem;
}

.page-legal {
  min-height: 100vh;
  padding-block: 8rem 5rem;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .page-legal {
    padding-block: 6rem 3rem;
  }
}
@media (max-width: 576px) {
  .page-legal {
    padding-block: 4rem 2rem;
  }
}
.page-legal__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2rem;
}
@media (max-width: 768px) {
  .page-legal__inner {
    padding-inline: 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-legal__inner {
    padding-inline: 1rem;
  }
}
.page-legal__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 3rem;
}
.page-legal__section {
  margin-bottom: 3rem;
}
.page-legal__section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.page-legal__section p,
.page-legal__section li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.8);
}
.page-legal__section ul {
  padding-left: 1.25rem;
  list-style: disc;
}
.page-legal__section li + li {
  margin-top: 0.5rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
  background-image: var(--hero-pattern-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.62);
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 999px;
  background: rgba(199, 161, 106, 0.12);
  filter: blur(70px);
  z-index: 0;
}

.hero__glow--one {
  width: 260px;
  height: 260px;
  top: 12%;
  right: 18%;
}

.hero__glow--two {
  width: 300px;
  height: 300px;
  bottom: 18%;
  left: 18%;
}

.hero__inner {
  max-width: 48rem;
  padding-inline: 1.5rem;
  padding-block: 3rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111111;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  margin-top: 1.5rem;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hero__cta:hover, .hero__cta:focus-visible, .hero__cta:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.front-page__content {
  padding-block: 3rem;
}

.front-page__content-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.front-page__content-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.front-page__content-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #111111;
}

.section-portfolio {
  padding-block: 6rem;
}

.section-portfolio__header {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.section-portfolio__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.section-portfolio__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1rem;
}

.section-portfolio__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.section-portfolio__cta:hover, .section-portfolio__cta:focus-visible, .section-portfolio__cta:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.section-portfolio__grid {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.25rem;
}

.section-portfolio__grid > p {
  grid-column: 1/-1;
  text-align: center;
  color: #666666;
}

.section-portfolio__item {
  cursor: pointer;
}

.section-portfolio__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.section-portfolio__thumbnail {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #f5f5f5;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.section-portfolio__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.section-portfolio__item-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.section-portfolio__item:hover .section-portfolio__thumbnail img {
  transform: scale(1.05);
}

.section-about-teaser {
  background-color: #f5f5f5;
  padding-block: 6rem;
}

.section-about-teaser__inner {
  max-width: 62rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.section-about-teaser__content {
  text-align: center;
}

.section-about-teaser__media {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  overflow: hidden;
}

.section-about-teaser__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-about-teaser__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.08));
}

.section-about-teaser__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-about-teaser__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-about-teaser__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.section-about-teaser__button:hover, .section-about-teaser__button:focus-visible, .section-about-teaser__button:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.section-gallery-cta {
  padding-block: 6rem;
}

.section-gallery-cta__inner {
  max-width: 50rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  text-align: center;
}

.section-gallery-cta__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.section-gallery-cta__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1.5rem;
}

.section-gallery-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.section-gallery-cta__button:hover, .section-gallery-cta__button:focus-visible, .section-gallery-cta__button:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.section-news {
  padding-block: 6rem;
  background-color: #111111;
  color: #ffffff;
}

.section-news__header {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-news__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.section-news__subtitle {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.section-news__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  border-radius: 0;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #111111;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.section-news__cta:hover, .section-news__cta:focus-visible, .section-news__cta:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.section-news__list {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.section-news__list > p {
  text-align: center;
  color: #666666;
  padding-block: 1.5rem;
}

.section-news__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.section-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding-block: 1rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.section-news__link:hover, .section-news__link:focus-visible {
  color: #d4af37;
  outline: none;
}

.section-news__item-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.125rem;
}

.section-news__item-date {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  margin-top: 0.5rem;
}

.section-video {
  padding-block: 4.5rem;
  background-color: #ffffff;
}
.section-video__inner {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section-video__header {
  text-align: center;
  margin-bottom: 2rem;
}
.section-video__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.section-video__text {
  color: #666666;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 42rem;
  margin-inline: auto;
}
.section-video__embed-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f5f5f5;
  overflow: hidden;
}
.section-video__iframe, .section-video__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

.section-newsletter {
  background-color: #f5f5f5;
  padding-block: 4.5rem;
}

.section-newsletter__inner {
  text-align: center;
}

.section-newsletter__header {
  text-align: center;
  margin-bottom: 1rem;
  padding-inline: 1.5rem;
}

.section-newsletter__title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 300;
  letter-spacing: 0.08em;
}

.section-newsletter__text {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 1.5rem;
  padding-inline: 1.5rem;
}

.section-newsletter__form {
  max-width: 37.5rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.section-newsletter__note {
  text-align: center;
  font-size: 0.75rem;
  color: #666666;
  font-style: italic;
  padding-inline: 1.5rem;
}

.section-newsletter__input {
  flex: 1 1 auto;
  font-family: inherit;
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background-color: #ffffff;
  color: #111111;
}
.section-newsletter__input::placeholder {
  color: #666666;
}
.section-newsletter__input:focus-visible {
  outline: 2px solid #d4af37;
  outline-offset: 1px;
}

.section-newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0;
  border: 1px solid #111111;
  background-color: #111111;
  color: #ffffff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.section-newsletter__button:hover, .section-newsletter__button:focus-visible, .section-newsletter__button:active {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

@media (max-width: 992px) {
  .section-portfolio__grid {
    gap: 2rem;
  }
  .section-portfolio__header,
  .section-news__header,
  .front-page__content-inner {
    padding-inline: 1rem;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  .hero__inner {
    padding-block: 2rem;
  }
  .section-portfolio {
    padding-block: 4.5rem;
  }
  .section-portfolio__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
  }
  .section-newsletter__form {
    flex-direction: column;
    align-items: stretch;
  }
  .section-about-teaser__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .section-about-teaser__media {
    max-width: 320px;
    margin-inline: auto;
  }
  .section-newsletter__button {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .hero__title {
    letter-spacing: 0.04em;
  }
  .section-portfolio__grid {
    grid-template-columns: 1fr;
  }
  .section-portfolio__header,
  .section-news__header,
  .section-news__list,
  .section-about-teaser__inner {
    padding-inline: 0.75rem;
  }
  .section-newsletter__form {
    padding-inline: 0.75rem;
  }
}

/*# sourceMappingURL=main.css.map */
