@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink-950: #080807;
  --ink-900: #10100f;
  --ink-850: #151513;
  --ink-800: #1a1a18;
  --ink-700: #242320;
  --smoke-100: #f3efe6;
  --smoke-300: #d0c8ba;
  --smoke-400: #b6ad9e;
  --brass-400: #b08a57;
  --brass-500: #c69a60;
  --brass-600: #deb074;
  --border-soft: rgba(198, 154, 96, 0.22);
  --border-strong: rgba(198, 154, 96, 0.42);
  --shadow-lux: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.25);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container-max: 1160px;
  --space-1: 0.35rem;
  --space-2: 0.6rem;
  --space-3: 0.9rem;
  --space-4: 1.2rem;
  --space-5: 1.8rem;
  --space-6: 2.6rem;
  --space-7: 3.8rem;
  --space-8: 5.2rem;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--smoke-100);
  line-height: 1.62;
  min-height: 100vh;
  background:
    radial-gradient(1200px 600px at 75% -10%, rgba(176, 138, 87, 0.16), transparent 55%),
    radial-gradient(950px 500px at 15% 0%, rgba(176, 138, 87, 0.11), transparent 52%),
    linear-gradient(180deg, #0b0b0a 0%, #10100f 65%, #090908 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0%, transparent 35%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 3px);
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: var(--brass-500);
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover {
  color: var(--brass-600);
}

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

main {
  display: block;
}

section {
  scroll-margin-top: 110px;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.container {
  width: min(var(--container-max), 100% - 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(9, 9, 8, 0.8);
  border-bottom: 1px solid rgba(198, 154, 96, 0.2);
}

.nav {
  width: min(var(--container-max), 100% - 2rem);
  margin-inline: auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 58px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-5);
}

.nav-links a {
  color: var(--smoke-300);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.35rem;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-500), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--smoke-100);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(20, 20, 18, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--smoke-100);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  padding: clamp(2.8rem, 6vw, 4.8rem) 0 clamp(3.6rem, 7vw, 6rem);
}

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lux);
  position: relative;
  background: #060605;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 5, 0.56), rgba(6, 6, 5, 0.1) 35%, transparent);
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: min(68vh, 760px);
  object-fit: contain;
  object-position: center;
}

.hero-content {
  width: min(840px, calc(100% - 2rem));
  margin: calc(-1 * var(--space-7)) auto 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(20, 19, 17, 0.95), rgba(12, 11, 10, 0.92));
  box-shadow: var(--shadow-lux);
  padding: clamp(1.6rem, 3.2vw, 2.6rem);
  text-align: center;
  position: relative;
}

.tagline {
  font-size: clamp(1.55rem, 4.6vw, 2.85rem);
  letter-spacing: 0.015em;
  color: var(--smoke-100);
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin-bottom: var(--space-3);
}

.hero-sub {
  color: var(--smoke-300);
  font-size: clamp(1rem, 2.3vw, 1.18rem);
  max-width: 72ch;
  margin: 0 auto var(--space-5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass-400), var(--brass-600));
  color: #1b1206;
  border-color: rgba(255, 221, 170, 0.45);
}

.btn-outline {
  border-color: var(--border-strong);
  color: var(--smoke-100);
  background: rgba(18, 17, 15, 0.7);
}

.btn-outline:hover {
  border-color: var(--brass-500);
  color: var(--brass-600);
}

.intro,
.highlights,
.artists-list,
.portfolio,
.contact,
.faq-teaser,
.cta-section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.intro .container,
.cta-section .container {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background: rgba(20, 19, 17, 0.72);
  padding: clamp(1.5rem, 3.4vw, 2.7rem);
  box-shadow: var(--shadow-soft);
}

.intro {
  text-align: center;
}

.intro h2,
.cta-section h2,
.page-header h1 {
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  margin-bottom: var(--space-3);
}

.intro p,
.cta-section p,
.page-header p,
.artist-bio,
.contact-info address,
.faq-teaser p {
  color: var(--smoke-300);
}

.intro p {
  max-width: 68ch;
  margin: 0 auto var(--space-3);
}

.intro-links {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: var(--space-4);
}

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

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.highlight-card,
.artist-card,
.contact-info,
.faq-teaser details {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(23, 22, 20, 0.92), rgba(14, 14, 12, 0.86));
  box-shadow: var(--shadow-soft);
}

.highlight-card {
  padding: var(--space-5);
  transition: transform 180ms ease, border-color 180ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.highlight-card h3,
.artist-info h2,
.portfolio-artist,
.contact-info h2,
.faq-teaser h2 {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin-bottom: var(--space-2);
}

.highlight-card h3,
.artist-title,
.contact-info h2,
.portfolio-artist {
  color: var(--brass-600);
}

.page-header {
  padding: clamp(2.6rem, 5vw, 4.2rem) 0;
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.artist-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--space-5);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
}

.artist-image {
  min-width: 0;
}

.artist-image .placeholder-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px dashed rgba(198, 154, 96, 0.35);
  border-radius: var(--radius-sm);
  background: rgba(12, 11, 10, 0.8);
  color: var(--smoke-400);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
}

.artist-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.artist-contact,
.contact-list,
.hours-list {
  list-style: none;
}

.artist-contact {
  margin-top: var(--space-3);
  display: grid;
  gap: var(--space-2);
}

.artist-contact a,
.contact-list a,
.social-link {
  color: var(--smoke-100);
}

.social-link {
  display: inline-flex;
  margin-top: var(--space-3);
  border-bottom: 1px solid rgba(198, 154, 96, 0.5);
  padding-bottom: 0.1rem;
}

.portfolio-artist {
  margin-bottom: var(--space-4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-3);
}

.portfolio-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background: rgba(10, 10, 9, 0.75);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-empty {
  border: 1px dashed rgba(198, 154, 96, 0.45);
  border-radius: var(--radius-sm);
  color: var(--smoke-400);
  padding: var(--space-4);
  background: rgba(16, 16, 14, 0.6);
}

.contact-info {
  padding: var(--space-5);
}

.contact-info h2 {
  margin-top: var(--space-4);
}

.contact-info h2:first-child {
  margin-top: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--smoke-300);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.faq-teaser h2 {
  text-align: center;
  margin-bottom: var(--space-4);
}

.faq-teaser details {
  margin-bottom: var(--space-2);
}

.faq-teaser summary {
  cursor: pointer;
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
}

.faq-teaser p {
  padding: 0 var(--space-4) var(--space-4);
}

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

.site-footer {
  margin-top: var(--space-6);
  border-top: 1px solid var(--border-soft);
  background: rgba(12, 12, 11, 0.86);
  padding: var(--space-5) 0;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.site-footer p,
.site-footer .social-link {
  color: var(--smoke-400);
  font-size: 0.88rem;
}

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

.lightbox.active {
  display: flex;
}

.lightbox-content {
  width: min(92vw, 1200px);
  max-height: 88vh;
}

.lightbox-content img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(14, 14, 13, 0.75);
  color: var(--smoke-100);
  cursor: pointer;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.7rem;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 1.65rem;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 9, 0.8);
  font-size: 0.8rem;
  color: var(--smoke-300);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-card {
    grid-template-columns: 1fr;
  }

  .artist-image {
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 46px;
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 102;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(290px, calc(100vw - 2rem));
    padding: 0.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-lux);
    background: linear-gradient(160deg, rgba(20, 19, 17, 0.97), rgba(11, 11, 10, 0.97));
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 0.88rem;
    padding: 0.72rem 0.85rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(198, 154, 96, 0.12);
  }

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

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .hero-content {
    margin-top: calc(-1 * var(--space-5));
  }

  .hero-image img {
    max-height: 48vh;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

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

  .portfolio-item {
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
