*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #1d1d1f;
  --gray:  #6e6e73;
  --light: #f5f5f7;
  --accent: #b84c3a;
  --nav-h: 52px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ───────────────────────────────── */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gray); }

.nav-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Hero ──────────────────────────────── */
.hero {
  padding: calc(var(--nav-h) + 3rem) 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-cta:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* ── Slideshow banner ──────────────────── */
#slideshow {
  position: relative;
  width: 100%;
  height: 65vh;
  overflow: hidden;
  background: #111;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s ease;
}

.slide.active {
  opacity: 1;
}

/* Bottom gradient fades into the gallery section */
#slideshow-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, var(--light));
  pointer-events: none;
}

/* ── Gallery ───────────────────────────── */
#gallery {
  background: var(--light);
  padding: 5rem 2.5rem 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  max-width: 1000px;
  margin: 0 auto 3.5rem;
}

.art-card {
  cursor: pointer;
  border: none;
  background: none;
  display: block;
  overflow: hidden;
}

.img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ddd;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
}

.art-card:hover .img-wrap img {
  transform: scale(1.07);
  opacity: 0.88;
}

/* ── Instagram CTA ─────────────────────── */
.ig-cta {
  text-align: center;
}

.ig-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ig-cta a:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ── About ─────────────────────────────── */
#about {
  background: var(--light);
  padding: 7rem 2rem;
}

.about-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

#about h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

#about p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.pill-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}

.pill-btn:hover {
  opacity: 0.8;
  transform: scale(1.02);
}

/* ── Studio strip ──────────────────────── */
.studio-strip {
  overflow: hidden;
  height: 180px;
  background: var(--black);
}

.studio-strip-track {
  display: flex;
  gap: 3px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.studio-strip-track img {
  width: 177px;
  height: 177px;
  object-fit: cover;
  flex-shrink: 0;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Footer ────────────────────────────── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.09);
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

footer a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover { color: var(--black); }

/* ── Lightbox ──────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 1rem 1.5rem;
  overflow-y: auto;
}

#lightbox.open { display: flex; }

#lb-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  transition: color 0.2s;
}
#lb-close:hover { color: #fff; }

/* Column: image-row + caption */
#lb-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  max-width: 820px;
}

/* Row: [← btn] [zoom area] [→ btn] */
#lb-img-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 860px;
}

#lb-zoom-area {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
  border-radius: 3px;
  max-height: 48vh;
}

#lb-img {
  max-height: 48vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 3px;
  transform-origin: center center;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  transition: opacity 0.35s ease;
}

#lb-prev, #lb-next {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lb-prev:hover, #lb-next:hover {
  background: rgba(255,255,255,0.25);
}

/* Caption below the image row */
#lb-caption {
  text-align: center;
  width: 100%;
}

#lb-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.3rem;
}

#lb-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* Action buttons */
#lb-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

#lb-like,
#lb-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

#lb-like {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}

#lb-like:hover {
  background: rgba(224,80,80,0.18);
  border-color: rgba(224,80,80,0.5);
  color: #ff7e7e;
}

#lb-like.liked {
  background: rgba(224,80,80,0.2);
  border-color: #e05050;
  color: #ff8a8a;
}

#lb-like.liked #lb-heart {
  fill: #ff8a8a;
  stroke: #ff8a8a;
}

#lb-contact {
  background: #fff;
  border: 1px solid #fff;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

#lb-contact:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* ── My Mom ────────────────────────────── */
#my-mom {
  padding: 7rem 2rem;
}

.mom-inner {
  display: flex;
  align-items: center;
  gap: 5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mom-photo {
  flex: 0 0 320px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}

.mom-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.mom-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.mom-text p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.mom-text p:last-child { margin-bottom: 0; }

/* ── Studio Tour ───────────────────────── */
#studio-tour {
  background: var(--black);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
}

#studio-tour .section-eyebrow {
  color: rgba(255,255,255,0.45);
}

#studio-tour h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

#studio-tour p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.tour-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
}

.tour-btn:hover {
  opacity: 0.88;
  transform: scale(1.02);
}

/* ── Mobile ────────────────────────────── */
@media (max-width: 700px) {
  #nav { padding: 0 1.25rem; }

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

  #gallery     { padding: 3.5rem 1rem 3rem; }
  #about       { padding: 5rem 1.25rem; }
  #my-mom      { padding: 4.5rem 1.25rem; }
  #studio-tour { padding: 4rem 1.25rem; }
  footer       { padding: 1.25rem; flex-direction: column; gap: 0.4rem; text-align: center; }

  #lb-img  { max-height: 55vh; }
  #lb-prev, #lb-next { width: 36px; height: 36px; font-size: 0.95rem; }

  .mom-inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .mom-photo {
    flex: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ── Shop & artwork pages ──────────────── */
.art-page { padding-top: var(--nav-h); }

.shop-hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.shop-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0.4rem 0 1.1rem;
}

.shop-hero-sub {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
}

.shop-grid-wrap { padding: 0 2rem 6rem; }

.shop-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2.75rem 2rem;
}

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

.shop-card .img-wrap {
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 4 / 5;
}

.shop-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-card:hover .img-wrap img { transform: scale(1.04); }

.shop-card-info { padding-top: 0.9rem; }

.shop-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
}

.shop-card-meta {
  font-size: 0.76rem;
  color: var(--gray);
  font-weight: 300;
  margin-top: 0.15rem;
}

.shop-card-price {
  font-size: 0.85rem;
  margin-top: 0.4rem;
  letter-spacing: 0.01em;
}

.shop-card--sold .img-wrap img { opacity: 0.55; }
.shop-card--sold .shop-card-price { color: var(--gray); }

/* Artwork detail */
.art-detail { padding: 3rem 2rem 6rem; }

.art-back {
  display: block;
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: none;
}

.art-back:hover { color: var(--black); }

.art-detail-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 4rem;
  align-items: start;
}

.art-detail-img {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-detail-img img {
  width: 100%;
  height: auto;
  display: block;
}

.art-detail-info { position: sticky; top: calc(var(--nav-h) + 2rem); }

.art-detail-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  margin: 0.3rem 0 0.6rem;
}

.art-meta {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 300;
}

.art-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 1.2rem 0 1.4rem;
}

.art-blurb {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 1.8rem;
}

.buy-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--black);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s ease;
}

.buy-btn:hover { background: var(--accent); }

.buy-btn--sold {
  background: var(--light);
  color: var(--gray);
  cursor: default;
}

.art-note {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* Price badge on the home gallery */
.art-card .card-price {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 300;
  padding-top: 0.55rem;
}

/* Newsletter */
#newsletter {
  background: var(--light);
  padding: 5rem 2rem;
  text-align: center;
}

.news-inner { max-width: 520px; margin: 0 auto; }

#newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 0.4rem 0 0.9rem;
}

#newsletter p {
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 1.8rem;
}

/* HubSpot injects its own markup, so style by its classes. */
#news-embed .hs-form,
.news-form {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.news-form input {
  flex: 1 1 260px;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  background: var(--white);
}

.news-form input:focus {
  outline: none;
  border-color: var(--black);
}

.news-form button {
  padding: 0.85rem 1.9rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

.news-form button:hover { background: var(--accent); }

.news-note {
  font-size: 0.72rem;
  margin-top: 1rem;
  color: var(--gray);
}

@media (max-width: 820px) {
  .art-detail-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .art-detail-info { position: static; }
  .art-detail { padding: 2rem 1.25rem 4rem; }
  .shop-grid-wrap { padding: 0 1.25rem 4rem; }
  .shop-grid { gap: 2rem 1.25rem; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

/* ── HubSpot embedded form ─────────────── */
#news-embed { max-width: 420px; margin: 0 auto; }

#news-embed .hs-form-field { margin-bottom: 0.75rem; text-align: left; }

#news-embed label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

#news-embed .hs-form-field > label > .hs-form-required { color: var(--accent); }

#news-embed input[type="text"],
#news-embed input[type="email"],
#news-embed input[type="tel"],
#news-embed textarea,
#news-embed select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  background: var(--white);
  color: var(--black);
}

#news-embed textarea { border-radius: 18px; min-height: 90px; }

#news-embed input:focus,
#news-embed textarea:focus,
#news-embed select:focus {
  outline: none;
  border-color: var(--black);
}

#news-embed .hs-button {
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.85rem 1.9rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease;
}

#news-embed .hs-button:hover { background: var(--accent); }

#news-embed .hs-error-msg,
#news-embed .hs-error-msgs label {
  color: var(--accent);
  font-size: 0.72rem;
}

#news-embed .submitted-message {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

#news-embed .hs-form-booleancheckbox label,
#news-embed .legal-consent-container {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--gray);
}

/* ── Print option ──────────────────────── */
.print-btn {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 0.15rem;
  width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.print-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── Prints section ────────────────────── */
#prints {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.prints-inner { max-width: 560px; margin: 0 auto; }

#prints h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  margin: 0.4rem 0 1.1rem;
}

#prints p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 1.9rem;
}

.art-blurb--process {
  font-size: 0.85rem;
  color: var(--gray);
  opacity: 0.85;
}
