html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f6f1;
  color: #111;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #f8f6f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  border-bottom: 1px solid #ddd;
}

header h1 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.site-logo {
  color: #111;
  text-decoration: none;
}

.site-logo:hover {
  opacity: 0.6;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
}

nav a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

nav > a.active,
nav .nav-dropdown-trigger.active {
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
}

/* Nav dropdown */

.nav-item-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #f8f6f1;
  border: 1px solid #ddd;
  padding: 6px 0;
  min-width: 180px;
  z-index: 100;
}

.nav-item-group.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 0;
}

.nav-dropdown-menu a:hover {
  background: #DCE8FC;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}

.lang-btn {
  background: #DCE8FC;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #111;
  border-radius: 4px;
  transition: background 0.2s;
}

.lang-btn.lang-active {
  background: #bcd4f8;
}

.lang-btn:hover {
  background: #bcd4f8;
}

.lang-btn.lang-active:hover {
  background: #a0bef0;
}

.lang-flag-en,
.lang-flag-sr {
  width: 24px;
  height: auto;
  display: block;
}

/* Homepage hero */

.hero {
  width: 100%;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 80vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f6f1;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #DCE8FC;
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 16px 20px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  line-height: 1;
}

.slide-btn:hover {
  background: #bcd4f8;
}

.slide-btn-prev {
  left: 24px;
}

.slide-btn-next {
  right: 24px;
}

.global-back-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 200;
  background: #DCE8FC;
  border: none;
  color: #111;
  font-size: 28px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1;
}

.global-back-btn:hover {
  background: #bcd4f8;
}

.hero-text {
  padding: 48px 40px 72px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-text h2 {
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  color: #333;
}

/* Shared sections */

.featured-works,
.shop-section {
  padding: 40px;
}

.featured-works h2,
.section-header h2 {
  font-size: 28px;
  font-weight: 400;
}

.featured-works h2 {
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0;
}

.view-all {
  color: #111;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid #111;
}

/* Works and shop grids */

.grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

a.shop-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.shop-item img {
  transition: transform 0.3s ease, opacity 0.2s;
}

a.shop-item:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.work img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.shop-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.work h3,
.shop-item h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 12px 0 4px;
}

.shop-item p {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px;
}

.shop-item span {
  font-size: 15px;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px;
  background: #DCE8FC;
  border-top: 1px solid #bcd4f8;
  font-size: 13px;
  color: #888;
}

footer p {
  margin: 0;
}

.footer-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-icons a {
  display: flex;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.footer-icons a:hover {
  opacity: 1;
}

.footer-icons img {
  width: 22px;
  height: 22px;
}

/* Contact modal */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  background: #f8f6f1;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
  line-height: 1;
}

.modal h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 8px;
}

.modal-to {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}

.modal label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  margin-bottom: 16px;
}

.modal input,
.modal textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}

.modal textarea {
  resize: vertical;
}

.modal-submit {
  width: 100%;
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 4px;
}

.modal-submit:hover {
  background: #333;
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.modal-status {
  margin: 12px 0 0;
  font-size: 14px;
  text-align: center;
}

.modal-status.success { color: #2a7a2a; }
.modal-status.error { color: #c0392b; }

.whatsapp-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.whatsapp-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid #ddd;
  text-decoration: none;
  color: #111;
  transition: background 0.2s;
}

.whatsapp-option:hover {
  background: #DCE8FC;
}

.whatsapp-option strong {
  font-size: 15px;
}

.whatsapp-option span {
  font-size: 13px;
  color: #555;
}

/* Works split landing */

.works-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - 73px);
}

.works-split--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.works-split--4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.works-split--5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.panel-white-borders .works-panel + .works-panel {
  border-left: 8px solid #fff;
}

.panels-square {
  height: auto;
  gap: 8px;
  background: #fff;
}

.panels-square .works-panel {
  aspect-ratio: 1 / 1;
}

.works-panel {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.works-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.works-panel:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.works-panel--coming-soon img {
  filter: brightness(0.4);
}

.works-panel--coming-soon:hover img {
  transform: none;
  opacity: 1;
  filter: brightness(0.4);
}

.highlights-section {
  padding: 0 0 8px;
}

.highlights-section-title {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

.highlights-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px;
  align-items: start;
}

.highlights-group .cups-grid {
  grid-template-columns: 1fr;
  padding: 0 0 24px;
  gap: 8px;
}

.cups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 40px 60px;
}

.cups-grid a,
.cups-grid .cups-sold {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  outline: none;
  text-decoration: none;
  line-height: 0;
}

.cups-grid a img,
.cups-grid .cups-sold img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.2s;
  cursor: pointer;
}

.cups-grid a:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

.cups-sold {
  position: relative;
}
.cups-sold img {
  filter: brightness(0.4);
  cursor: default;
}
.sold-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #bcd4f8;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 44px;
  white-space: nowrap;
  clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 22px 100%, 0% 50%);
}

.coming-soon-ribbon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #bcd4f8;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 44px;
  white-space: nowrap;
  clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 22px 100%, 0% 50%);
}

.works-panel-label {
  position: absolute;
  bottom: 48px;
  left: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Series landing */

.series-bands {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 73px);
}

.series-band {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.series-band img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.series-band:hover img {
  transform: scale(1.03);
}

.series-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.3s;
}

.series-band:hover .series-band-overlay {
  background: rgba(0, 0, 0, 0.48);
}

.series-band-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Work detail page */

.work-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  padding: 48px 40px 80px;
  align-items: start;
}

.work-zoom-wrap {
  position: relative;
  cursor: crosshair;
}

.work-zoom-wrap img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.zoom-lens {
  display: none;
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(0,0,0,0.1);
  pointer-events: none;
  background-repeat: no-repeat;
}

.back-link {
  display: none;
}

.work-detail-info h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 32px;
}

.work-meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 0;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid #ddd;
  padding-top: 24px;
}

.work-meta dt {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 2px;
}

.work-meta dd {
  font-size: 15px;
  margin: 0;
}

.work-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  border-top: 1px solid #ddd;
  padding-top: 24px;
}

@media (max-width: 768px) {
  .work-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px 60px;
  }
}

/* Works page */

.works-category {
  padding: 0 40px 80px;
}

.category-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 32px;
  padding-top: 16px;
  border-top: 1px solid #ddd;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.work-card {
  display: block;
  text-decoration: none;
  color: #111;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
}

.work-card:hover img {
  opacity: 0.85;
}

.work-info {
  padding: 14px 0 0;
}

.work-info h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 4px;
}

.work-info p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* General page intro */

.page-intro {
  padding: 80px 40px 40px;
  width: 100%;
  box-sizing: border-box;
}

.page-intro h2 {
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 16px;
  text-align: center;
}

.page-intro p {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* About page */

.about-page {
  padding: 80px 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr 400px;
  gap: 80px;
  max-width: 1400px;
}

.artistphoto {
  position: sticky;
  top: 120px;
  align-self: start;
}

.artistphoto img {
  width: 100%;
  height: auto;
  display: block;
}

.press-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 40px 48px;
}

.press-video-item video {
  width: 100%;
  display: block;
  background: #000;
}

.press-video-label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 8px 0 2px;
}

.press-video-date {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.about-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.about-sidebar h2 {
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 16px;
}

.about-sidebar p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.about-text {
  max-width: 820px;
}

.cv-section {
  padding-bottom: 56px;
  margin-bottom: 56px;
  border-bottom: 1px solid #ddd;
}

.cv-section:last-child {
  border-bottom: none;
}

.cv-section h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 24px;
}

.cv-section p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.cv-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cv-section li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Order page */

.order-page {
  padding: 80px 40px;
  max-width: 800px;
}

.order-page h2 {
  font-size: 56px;
  font-weight: 400;
  margin: 0 0 24px;
}

.order-page p {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #333;
}

.order-form {
  display: grid;
  gap: 22px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-size: 15px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 16px;
  font-family: inherit;
}

.order-form textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.checkbox-label input {
  width: auto;
  margin-top: 3px;
}

.order-form button {
  width: fit-content;
  padding: 14px 28px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

.order-form button:hover {
  background: transparent;
  color: #111;
}

.order-email {
  margin-bottom: 28px;
  color: #555;
}

.order-email a {
  color: #111;
}

.order-status,
.modal-status {
  margin-top: 12px;
  font-size: 14px;
}

.order-status.success,
.modal-status.success {
  color: #2a7a2a;
}

.order-status.error,
.modal-status.error {
  color: #c0392b;
}

.contact-details {
  padding: 0 40px 48px;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.contact-details a {
  color: #111;
}

.contact-group h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 12px;
}

.contact-group p {
  margin: 0 0 6px;
  font-size: 15px;
  color: #333;
}

.contact-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin-top: 20px;
}

/* Series description */

.series-content {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 1100px;
  margin: 100px auto 0;
  padding: 0 40px 56px;
}

.series-description {
  flex: 1;
  text-align: justify;
}

.series-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 20px;
}

.series-description p:last-child {
  margin-bottom: 0;
}

.pdf-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  flex-shrink: 0;
  width: 100px;
}

.pdf-icon {
  width: 64px;
  height: 80px;
  background: #DCE8FC;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  position: relative;
  clip-path: polygon(0 0, 75% 0, 100% 25%, 100% 100%, 0 100%);
  transition: background 0.2s;
}

.pdf-link:hover .pdf-icon {
  background: #bcd4f8;
}

.pdf-link span {
  font-size: 11px;
  text-align: center;
  color: #555;
  line-height: 1.4;
}

/* Work info card */

.work-info-card {
  padding: 0 40px 48px;
  max-width: 540px;
}

.work-author {
  font-size: 13px;
  color: #888;
  margin: 0 0 4px;
}

.work-author strong {
  color: #111;
  font-size: 15px;
}

.work-meta-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 20px;
  margin: 16px 0 24px;
  padding: 0;
  list-style: none;
}

.work-meta-list dt {
  font-size: 15px;
  color: #888;
  font-weight: 400;
}

.work-meta-list dd {
  font-size: 15px;
  color: #111;
  margin: 0;
}

.work-action-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-primary {
  padding: 12px 24px;
  background: #DCE8FC;
  color: #111;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #bcd4f8;
}

.btn-secondary {
  padding: 12px 24px;
  background: #bcd4f8;
  color: #111;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: #a0bef0;
}

.prodato-label {
  font-size: 15px;
  font-weight: 600;
  color: #2470c2;
  margin: 0 0 28px;
}

.award-note {
  font-size: 14px;
  font-style: italic;
  color: #555;
  margin: 0 0 20px;
  padding: 8px 14px;
  border-left: 3px solid #DCE8FC;
}

.named-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 40px 60px;
}

.named-work-item {
  margin-bottom: 16px;
}

.named-work-item .work-meta-list {
  margin: 8px 0 0;
}

.cup-info {
  margin: 0 0 24px;
  max-width: 480px;
  padding-top: 8px;
  gap: 12px 28px;
}

.cup-info dt {
  font-size: 15px;
}

.cup-info dd {
  font-size: 15px;
}

.work-info-card .work-action-btns {
  margin-top: 8px;
}

.named-work-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  margin: 0 0 6px;
}

.named-work-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.named-work-item img:hover {
  opacity: 0.8;
}

.named-work-item .prodato-label {
  margin: 6px 0 0;
  font-size: 13px;
}

.work-text-description {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* Series section divider */

.series-section-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 56px 40px 32px;
}

.series-section-divider::before,
.series-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #ddd;
}

.series-section-divider h3 {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
}

button.series-section-divider {
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
}

.opening-toggle-icon {
  font-size: 22px;
  line-height: 1;
  color: #888;
}

.photo-grid[hidden] {
  display: none;
}

/* Photo grid + lightbox */

.photo-grid {
  columns: 3;
  column-gap: 8px;
  padding: 0 40px 60px;
}

.photo-grid a,
.photo-grid > img {
  display: block;
  break-inside: avoid;
  margin-bottom: 8px;
  outline: none;
  text-decoration: none;
  line-height: 0;
}

.photo-grid a img,
.photo-grid > img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.photo-grid img:hover {
  opacity: 0.8;
}

.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  color: #fff;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
}

.lightbox-close:hover {
  opacity: 1;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 64px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  padding: 0 20px;
  user-select: none;
}

.lightbox-prev { left: 8px; }
.lightbox-next { right: 8px; }

.lightbox-prev:hover,
.lightbox-next:hover { opacity: 1; }

.gallery-extra { display: none; }

.sentimenti-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 16px;
  padding: 0 40px 60px;
}

.sentimenti-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sentimenti-item img:hover { opacity: 0.8; }

.sentimenti-item .work-meta-list {
  margin: 10px 0 0;
}

/* Order inquiry button */

.order-button {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid #111;
  color: #111;
  text-decoration: none;
  font-size: 14px;
}

.order-button:hover {
  background: #111;
  color: #fff;
}

/* Mobile */

@media (max-width: 768px) {
  header {
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    width: 100%;
    gap: 8px 16px;
  }

  .slideshow {
    height: 65vh;
  }

  .hero-text {
    padding: 36px 20px 56px;
  }

  .hero-text h2 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .featured-works,
  .shop-section {
    padding: 20px;
  }

  .grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .work img {
    height: 420px;
  }

  .works-split,
  .works-split--3,
  .works-split--4,
  .works-split--5 {
    grid-template-columns: 1fr;
    height: auto;
  }

  .panel-white-borders .works-panel + .works-panel {
    border-left: none;
    border-top: 8px solid #fff;
  }

  .works-panel {
    height: 50vh;
  }

  .series-bands {
    height: auto;
  }

  .series-band {
    height: 30vw;
    min-height: 120px;
  }

  .series-band-label {
    font-size: 18px;
  }

  .works-panel-label {
    font-size: 28px;
    bottom: 32px;
    left: 20px;
  }

  .works-category {
    padding: 0 20px 56px;
  }

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

  .work-card img {
    height: 420px;
  }

  .page-intro {
    padding: 48px 20px 24px;
  }

  .page-intro h2 {
    font-size: 38px;
  }

  .page-intro p {
    font-size: 18px;
  }

  .about-page {
    padding: 48px 20px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .artistphoto {
    order: -1;
  }

  .artistphoto img {
    min-height: 300px;
  }

  .about-sidebar {
    position: static;
  }

  .about-sidebar h2 {
    font-size: 38px;
  }

  .cv-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .cv-section h3 {
    font-size: 24px;
  }

  .cv-section p {
    font-size: 18px;
  }

  .cv-section li {
    font-size: 16px;
  }

  .order-page {
    padding: 48px 20px;
  }

  .order-page h2 {
    font-size: 38px;
  }

  .order-page p {
    font-size: 18px;
  }

  .cups-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px 40px;
  }

  .photo-grid {
    columns: 2;
    padding: 0 16px 40px;
  }

  .highlights-section {
    padding: 0 0 8px;
  }

  .highlights-section-title {
    font-size: 22px;
  }

  .highlights-groups {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }

  .highlights-group .cups-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 16px;
  }

  .sold-ribbon,
  .coming-soon-ribbon {
    font-size: 12px;
    padding: 8px 28px;
  }

  footer {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    text-align: center;
  }

  .work-info-card {
    padding: 0 20px 32px;
  }

  .press-videos {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }

  .named-works-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 40px;
  }

  .series-section-divider {
    padding: 40px 20px 24px;
  }

  .contact-details {
    padding: 0 20px 40px;
    gap: 40px;
  }

  .modal {
    padding: 28px 20px;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: none;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 40px;
    padding: 0 12px;
  }

  .lightbox-close {
    font-size: 32px;
    top: 12px;
    right: 16px;
  }
}