/* ============================================
   Isabel Alessio Portfolio — Stylesheet
   Color palette derived from IA monogram teal
   ============================================ */

:root {
  --teal:        #1e3a3a;
  --teal-light:  #2a4f4f;
  --teal-dark:   #142828;
  --cream:       #f5f0eb;
  --cream-dark:  #e8e0d8;
  --warm-white:  #faf8f5;
  --charcoal:    #2c2c2c;
  --text:        #3a3632;
  --text-light:  #7a756f;
  --gold:        #b8965a;
  --gold-muted:  #c9ad7a;

  --ff-display:  'Cormorant Garamond', 'Georgia', serif;
  --ff-serif:    'Libre Baskerville', 'Georgia', serif;
  --ff-sans:     'Jost', 'Helvetica Neue', sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ---- Reveal animation ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(30, 58, 58, 0.08);
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.02em;
  display: flex;
  gap: 0.05em;
}
.nav__logo-i { font-weight: 600; }
.nav__logo-a { font-weight: 300; font-style: italic; }
.nav__links { display: flex; gap: 2.5rem; }
.nav__link {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav__link:hover::after { width: 100%; }
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  padding: 4px 0;
}
.nav__menu-btn span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--teal);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__menu-btn.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.nav__menu-btn.active span:last-child  { transform: rotate(-45deg) translate(3px, -3px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__link {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.04em;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,58,58,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(184,150,90,0.03) 0%, transparent 50%);
}
.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
}
.hero__name {
  font-family: var(--ff-display);
  font-weight: 300;
  color: var(--teal);
  line-height: 1.05;
  letter-spacing: 0.06em;
}
.hero__name-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 8rem);
}
.hero__name-line:nth-child(2) {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.hero__subtitle {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 300;
}
.hero__scroll-hint {
  margin-top: auto;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
}
.hero__scroll-dot {
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { cy: 8; opacity: 1; }
  50%      { cy: 16; opacity: 0.3; }
}

/* ---- Featured ---- */
.featured {
  padding: 8rem 3rem;
  background: var(--warm-white);
}
.featured__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.featured__image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.featured__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(30,58,58,0.08);
  pointer-events: none;
}
.featured__image {
  width: 100%;
  transition: transform 0.6s var(--ease-smooth);
}
.featured__image-wrap:hover .featured__image {
  transform: scale(1.03);
}
.featured__label {
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.featured__title {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--teal);
  margin: 0.5rem 0 0.75rem;
  letter-spacing: 0.02em;
}
.featured__meta {
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.featured__description {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 420px;
}

/* ---- Gallery ---- */
.gallery {
  padding: 6rem 3rem 8rem;
  background: var(--cream);
}
.gallery__header {
  max-width: 1400px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--teal);
  letter-spacing: 0.03em;
}
.section-title--light { color: var(--cream); }
.gallery__filters {
  display: flex;
  gap: 0.25rem;
}
.filter-btn {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: color 0.3s, background 0.3s;
  font-weight: 400;
}
.filter-btn:hover { color: var(--teal); }
.filter-btn.active {
  color: var(--teal);
  background: rgba(30,58,58,0.06);
}

.gallery__grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.gallery__item {
  cursor: pointer;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery__item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.gallery__item-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 5;
}
.gallery__item-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(30,58,58,0.06);
  pointer-events: none;
}
.gallery__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.gallery__item:hover .gallery__item-img {
  transform: scale(1.04);
}
.gallery__item-info {
  padding: 1rem 0.25rem;
}
.gallery__item-title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.gallery__item-meta {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
}

/* ---- About ---- */
.about {
  padding: 8rem 3rem;
  background: var(--warm-white);
}
.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__text .section-title { margin-bottom: 2rem; }
.about__bio {
  font-family: var(--ff-serif);
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.about__accent-img {
  width: 100%;
  box-shadow: 0 24px 64px rgba(30,58,58,0.12);
}

/* ---- Contact ---- */
.contact {
  padding: 8rem 3rem;
  background: var(--teal);
  text-align: center;
}
.contact__inner { max-width: 600px; margin: 0 auto; }
.contact__text {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-dark);
  margin: 1.5rem 0 2.5rem;
}
.contact__details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.contact__link {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--gold-muted);
  letter-spacing: 0.06em;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(201,173,122,0.3);
  padding-bottom: 2px;
}
.contact__link:hover { color: var(--cream); border-color: var(--cream); }
.contact__divider {
  color: var(--teal-light);
  font-size: 1.2rem;
}

/* ---- Footer ---- */
.footer {
  padding: 2rem 3rem;
  background: var(--teal-dark);
}
.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream-dark);
}
.footer__copy {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,235,0.4);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 20, 18, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  padding: 2rem;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2rem;
  color: var(--cream-dark);
  cursor: pointer;
  transition: opacity 0.3s;
  background: none; border: none;
}
.lightbox__close:hover { opacity: 0.6; }
.lightbox__img {
  max-width: 80vw;
  max-height: 75vh;
  object-fit: contain;
  box-shadow: 0 16px 80px rgba(0,0,0,0.5);
}
.lightbox__info { text-align: center; margin-top: 1.5rem; }
.lightbox__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
}
.lightbox__meta {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: var(--cream-dark);
  opacity: 0.6;
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .nav { padding: 1.25rem 1.5rem; }
  .nav.scrolled { padding: 0.9rem 1.5rem; }
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }

  .featured { padding: 5rem 1.5rem; }
  .featured__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery { padding: 4rem 1.5rem 5rem; }
  .gallery__grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }

  .about { padding: 5rem 1.5rem; }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image-col { order: -1; max-width: 400px; }

  .contact { padding: 5rem 1.5rem; }
  .footer { padding: 1.5rem; }
  .footer__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 500px) {
  .hero__name-line { font-size: 3rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__header { flex-direction: column; }
  .gallery__filters { flex-wrap: wrap; }
}

/* ============================================
   Edit Mode
   ============================================ */

/* ---- Price display (public-facing) ---- */
.gallery__item-price {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.2rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ---- Admin pencil button ---- */
.admin-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 300;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: pointer;
  border: none;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}
.admin-btn:hover {
  opacity: 1;
  background: var(--teal-light);
  transform: scale(1.08);
}

/* ---- Edit toolbar ---- */
.edit-toolbar[hidden] { display: none; }
.edit-toolbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--teal-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
}
.edit-toolbar__label {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-muted);
  margin-right: auto;
}
.edit-toolbar__save {
  background: var(--gold);
  color: var(--teal-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 3px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.edit-toolbar__save:hover { background: var(--gold-muted); }
.edit-toolbar__save:disabled { opacity: 0.6; cursor: default; }
.edit-toolbar__discard,
.edit-toolbar__exit {
  background: transparent;
  color: var(--cream-dark);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(245,240,235,0.2);
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}
.edit-toolbar__discard:hover,
.edit-toolbar__exit:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* Push content below toolbar in edit mode */
body.edit-mode { padding-top: 48px; }

/* Editable field highlight */
body.edit-mode [contenteditable] {
  outline: 2px dashed rgba(184,150,90,0.45);
  outline-offset: 3px;
  cursor: text;
  border-radius: 2px;
  min-width: 4px;
  transition: outline-color 0.2s;
}
body.edit-mode [contenteditable]:focus {
  outline: 2px solid var(--gold);
  background: rgba(184,150,90,0.04);
}

/* ---- Gallery edit controls (per item) ---- */
.gallery__edit-controls {
  padding: 0.6rem 0.25rem 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  border-top: 1px dashed rgba(184,150,90,0.35);
  margin-top: 0.5rem;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  color: var(--text-light);
}
.gallery__edit-controls label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.edit-price {
  width: 90px;
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 0.2rem 0.4rem;
  font-family: var(--ff-sans);
  font-size: 0.76rem;
  color: var(--text);
  background: var(--warm-white);
}
.edit-delete-btn {
  margin-left: auto;
  color: #c0392b;
  font-size: 0.74rem;
  border: 1px solid rgba(192,57,43,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  cursor: pointer;
  background: none;
  transition: background 0.2s;
}
.edit-delete-btn:hover { background: rgba(192,57,43,0.08); }

/* ---- Gallery add artwork card ---- */
.gallery__add-btn {
  border: 2px dashed var(--cream-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  cursor: pointer;
  color: var(--text-light);
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  transition: border-color 0.3s, color 0.3s;
  user-select: none;
}
.gallery__add-btn:hover {
  border-color: var(--gold);
  color: var(--teal);
}

/* ---- Auth modal ---- */
.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,20,18,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.auth-modal[hidden] { display: none; }
.auth-modal__box {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 4px;
  width: min(340px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
}
.auth-modal__box h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--teal);
}
.auth-modal__box input[type="password"] {
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.7rem 0.9rem;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text);
  width: 100%;
  background: var(--warm-white);
}
.auth-modal__box input[type="password"]:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.auth-modal__error {
  color: #c0392b;
  font-size: 0.8rem;
  font-family: var(--ff-sans);
  margin-top: -0.5rem;
}
.auth-modal__error[hidden] { display: none; }
.auth-modal__box #authSubmit {
  background: var(--teal);
  color: var(--cream);
  padding: 0.75rem;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.auth-modal__box #authSubmit:hover { background: var(--teal-light); }
.auth-modal__box #authCancel {
  background: none;
  color: var(--text-light);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  border: none;
  padding: 0.2rem;
}

/* ---- Add Artwork modal ---- */
.add-artwork-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,20,18,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  overflow-y: auto;
  padding: 2rem 1rem;
}
.add-artwork-modal[hidden] { display: none; }
.add-artwork-modal__box {
  background: var(--warm-white);
  padding: 2.5rem;
  border-radius: 4px;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 80px rgba(0,0,0,0.35);
  margin: auto;
}
.add-artwork-modal__box h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--teal);
}
.add-artwork-modal__box label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.add-artwork-modal__check {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem !important;
}
.add-artwork-modal__box input[type="text"],
.add-artwork-modal__box input[type="number"],
.add-artwork-modal__box select {
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.6rem 0.8rem;
  font-family: var(--ff-sans);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--warm-white);
  width: 100%;
}
.add-artwork-modal__box input:focus,
.add-artwork-modal__box select:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}
.add-artwork-modal__preview-wrap {
  min-height: 0;
}
.add-artwork-modal__preview-wrap img {
  max-height: 180px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 3px;
  border: 1px solid var(--cream-dark);
}
.add-artwork-modal__error {
  color: #c0392b;
  font-size: 0.8rem;
  font-family: var(--ff-sans);
}
.add-artwork-modal__error[hidden] { display: none; }
.add-artwork-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.add-artwork-modal__submit {
  flex: 1;
  background: var(--teal);
  color: var(--cream);
  padding: 0.75rem;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.add-artwork-modal__submit:hover { background: var(--teal-light); }
.add-artwork-modal__submit:disabled { opacity: 0.6; cursor: default; }
.add-artwork-modal__cancel {
  background: none;
  color: var(--text-light);
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  cursor: pointer;
  border: 1px solid var(--cream-dark);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.add-artwork-modal__cancel:hover { border-color: var(--text-light); }
