:root {
  --bg-deep: #071019;
  --bg-mid: #111827;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.18);
  --text: #f8f5ef;
  --muted: rgba(248, 245, 239, 0.78);
  --accent: #facc15;
  --accent-strong: #ffe27a;
  --accent-warm: #ff7a18;
  --accent-cool: #6a5cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --content-width: 1120px;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 24, 0.35), transparent 30%),
    radial-gradient(circle at bottom right, rgba(106, 92, 255, 0.3), transparent 34%),
    linear-gradient(135deg, var(--bg-mid), var(--bg-deep));
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--accent);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.site-nav a.is-active {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 96px);
  padding: 4rem 0 3rem;
}

.hero-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-copy {
  animation: rise 900ms ease both;
}

.hero-art-card {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background: var(--panel);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art-card::before,
.hero-art-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-art-card::before {
  width: 180px;
  height: 180px;
  background: rgba(249, 115, 22, 0.72);
  top: 28px;
  left: 28px;
}

.hero-art-card::after {
  width: 240px;
  height: 240px;
  background: rgba(106, 92, 255, 0.48);
  right: -46px;
  bottom: -56px;
  animation-delay: 1s;
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

.hero-tag {
  position: absolute;
  left: 1.75rem;
  bottom: 1.75rem;
  z-index: 2;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-strong);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.subheadline,
.page-intro {
  margin: 1.3rem auto 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero .subheadline {
  margin-left: 0;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.button-primary {
  background: white;
  color: #111827;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.section-shell {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.home-note {
  padding: 1.2rem 0 3rem;
}

.home-note p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.page-main {
  padding: 3rem 0 5rem;
}

.page-hero {
  padding: 2rem 0 2.25rem;
}

.prose-panel,
.painting-card,
.lightbox-image {
  box-shadow: var(--shadow);
}

.prose-panel {
  padding: clamp(1.4rem, 2vw, 2.3rem);
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.prose-panel p {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text);
}

.prose-panel p:last-child {
  margin-bottom: 0;
}

.statement-panel {
  max-width: 860px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}

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

.gallery-grid.preview-grid .painting-image {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.painting-card {
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, background 220ms ease;
  display: flex;
  flex-direction: column;
}

.painting-card .painting-meta {
  flex: 1;
}

.painting-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(255, 255, 255, 0.14);
}

.painting-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.painting-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 260ms ease, filter 260ms ease;
}

.painting-image-button:hover .painting-image,
.painting-image-button:focus-visible .painting-image {
  transform: scale(1.02);
  filter: brightness(1.03);
}

.painting-meta {
  padding: 1.2rem 1.15rem 1.35rem;
}

.painting-meta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent);
}

.painting-meta p {
  margin: 0.32rem 0;
  color: var(--muted);
  line-height: 1.6;
}

.painting-card-template {
  border-style: dashed;
}

/* Collection sections */
.collection-section {
  margin-bottom: 4rem;
}

.collection-heading {
  margin: 0 0 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Carousel */
.carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.carousel-stage {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 720px;
}

.carousel-slides {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.carousel-slide {
  display: none;
}

.carousel-slide.is-active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.carousel-caption {
  padding: 1.2rem 1.4rem 1.4rem;
}

.carousel-caption h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  color: var(--accent);
}

.carousel-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.carousel-prev,
.carousel-next {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--accent);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 180ms ease;
}

.carousel-dot.is-active {
  background: var(--accent);
}

.carousel-actions {
  margin-top: 0.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
}

.contact-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.contact-card p {
  margin: 0.4rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  border: 0;
  background: transparent;
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-image {
  width: 90vw;
  height: 90vh;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(7deg);
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem 1.2rem;
  }

  .site-nav {
    gap: 0.8rem 1rem;
    justify-content: flex-start;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .subheadline,
  .page-intro,
  .prose-panel p {
    font-size: 1rem;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .button {
    min-width: 0;
    width: 100%;
  }
}

/* ---- Pull quote ---- */
.pull-quote-section {
  padding: 4rem 0 3rem;
  text-align: center;
}

.pull-quote {
  margin: 0 auto;
  max-width: 780px;
  padding: 0;
  border: none;
}

.pull-quote p {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.75;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1rem;
}

.pull-quote cite {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-style: normal;
  text-transform: uppercase;
}

/* ---- Collections preview ---- */
.collections-preview {
  padding: 1rem 0 4rem;
}

.collections-preview-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0.4rem 0 2rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.collection-preview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, background 220ms ease;
}

.collection-preview-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: rgba(255, 255, 255, 0.14);
}

.collection-preview-img-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.collection-preview-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.collection-preview-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.collection-preview-info h3 {
  margin: 0 0 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.collection-preview-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Footer ---- */
.site-footer {
  margin-top: 5rem;
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 0.6rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-studios {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

.footer-bottom {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 245, 239, 0.35);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- Scroll reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

.collection-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.collection-section {
  margin-bottom: 3.5rem;
}
