@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-700-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-900-normal.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #6b2c91;
  --purple-dark: #54216f;
  --purple-light: #8c4fb8;
  --crimson: #a32638;
  --royal: #2a4b8d;
  --gold: #c99a2e;
  --gold-dark: #a67d1e;
  --ink: #17111c;
  --ink-soft: #241a2b;
  --ivory: #fbf7ef;
  --ivory-dark: #f1e8d8;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
}
p { margin: 0; }
button { font-family: inherit; }

::selection { background: var(--purple); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }

.section { padding: var(--space-xl) 0; }
.section--ivory { background: var(--ivory); }
.section--ivory-dark { background: var(--ivory-dark); }
.section--ink { background: var(--ink); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); }
.btn-ghost-dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.2); }
.btn-outline-ink { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-outline-ink:hover { background: var(--ink); color: #fff; }

/* ---------- Navbar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled { background: rgba(23,17,28,0.95); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 18px;
}
.brand__name { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1; display: block; }
.brand__tag { color: var(--gold); font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 8px 12px; border-radius: 6px; font-size: 14px; font-weight: 600;
  color: #d1d5db; transition: all 0.2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links a.is-active { color: var(--gold); background: rgba(201,154,46,0.1); }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex; background: none; border: none; color: #fff; padding: 8px;
  border-radius: 8px; cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle:hover { background: rgba(255,255,255,0.1); }

.mobile-menu {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu.is-open { max-height: 600px; }
.mobile-menu__inner { padding: 16px; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 16px; border-radius: 8px; font-weight: 600; font-size: 14px; color: #d1d5db; }
.mobile-menu a.is-active { color: var(--gold); background: rgba(201,154,46,0.1); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__canvas { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 60% at 50% 50%, rgba(23,17,28,0.88) 0%, rgba(23,17,28,0.72) 40%, rgba(23,17,28,0.35) 75%, rgba(23,17,28,0.05) 100%);
}
.hero__edge-top, .hero__edge-bottom { position: absolute; left: 0; right: 0; height: 96px; }
.hero__edge-top { top: 0; background: linear-gradient(to bottom, rgba(23,17,28,0.9), transparent); }
.hero__edge-bottom { bottom: 0; background: linear-gradient(to top, rgba(23,17,28,0.9), transparent); }
.hero__content { position: relative; z-index: 10; text-align: center; padding: 160px 0 80px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,154,46,0.15); border: 1px solid rgba(201,154,46,0.3); color: var(--gold);
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 40px;
}
.hero__badge {
  width: 80px; height: 80px; border-radius: 50%; background: var(--purple); border: 4px solid var(--gold);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 36px;
  box-shadow: 0 20px 40px rgba(107,44,145,0.3);
}
.hero__title { color: #fff; letter-spacing: -0.02em; }
.hero__title-line { display: block; font-size: clamp(3.5rem, 10vw, 8rem); }
.hero__title-line--accent { color: var(--gold); }
.hero__tagline { color: #9ca3af; font-size: 18px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; margin: 24px 0 12px; }
.hero__quote { color: #9ca3af; font-size: 16px; font-style: italic; max-width: 560px; margin: 0 auto 48px; }
.hero__actions { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; } }

/* ---------- Section header ---------- */
.section-header { margin-bottom: 56px; }
.section-header--centered { text-align: center; }
.section-header__eyebrow { display: inline-block; color: var(--gold-dark); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.section-header__title { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.02em; margin-bottom: 20px; }
.section-header--light .section-header__title { color: #fff; }
.section-header__accent { color: var(--purple); }
.section-header--light .section-header__accent { color: var(--gold); }
.section-header__subtitle { font-size: 18px; line-height: 1.6; color: #6b7280; max-width: 640px; }
.section-header--centered .section-header__subtitle { margin: 0 auto; }
.section-header--light .section-header__subtitle { color: #d1d5db; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid #f3f4f6; box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.12); transform: translateY(-6px); }

.artwork-card__media { position: relative; height: 260px; overflow: hidden; }
.artwork-card__media-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.artwork-card__badge {
  width: 64px; height: 64px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 24px; box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}
.artwork-card__coming-soon { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 12px; text-align: center; }
.artwork-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 11px; font-weight: 700; color: #fff; padding: 6px 12px; border-radius: var(--radius-pill); letter-spacing: 0.02em;
}
.artwork-card__overlay {
  position: absolute; inset: 0; background: rgba(23,17,28,0.8); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease; z-index: 3;
}
.card:hover .artwork-card__overlay { opacity: 1; }
.artwork-card__body { padding: 24px; }
.artwork-card__title { font-size: 20px; margin-bottom: 8px; }
.artwork-card__desc { color: #6b7280; font-size: 14px; margin-bottom: 16px; }
.artwork-card__footer { display: flex; align-items: center; justify-content: space-between; }
.artwork-card__meta { font-size: 11px; font-weight: 600; background: var(--ivory-dark); color: #4b5563; padding: 4px 10px; border-radius: var(--radius-pill); }
.artwork-card__link { color: var(--purple); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 4px; }

/* ---------- Empty state ---------- */
.empty-state {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 80px 24px; background: #fff; border-radius: var(--radius-lg); border: 1px dashed #e5e7eb;
}
.empty-state__icon { width: 64px; height: 64px; border-radius: var(--radius-md); background: rgba(107,44,145,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--purple); }
.empty-state__title { font-size: 24px; margin-bottom: 12px; }
.empty-state__desc { color: #6b7280; max-width: 420px; line-height: 1.6; }

/* ---------- Forms ---------- */
.form-panel { background: #fff; border-radius: var(--radius-lg); border: 1px solid #f3f4f6; padding: 40px; }
.form-row { display: grid; gap: 20px; margin-bottom: 20px; }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--ivory); border: 1px solid #e5e7eb; border-radius: var(--radius-md);
  padding: 14px 16px; font-size: 14px; font-family: inherit; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(107,44,145,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--purple); color: #fff; font-weight: 700; padding: 16px; border-radius: var(--radius-md);
  border: none; cursor: pointer; font-size: 14px; transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit:hover { background: var(--purple-dark); transform: translateY(-2px); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success__icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(107,44,145,0.1); color: var(--purple); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; }
.site-footer__top { padding: 64px 0 48px; display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .site-footer__top { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }
.site-footer h4 { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer a { color: #9ca3af; font-size: 14px; transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; flex-direction: column; gap: 8px; align-items: center; justify-content: space-between; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__bottom p { color: #6b7280; font-size: 12px; }
.social-icons { display: flex; gap: 12px; margin-top: 24px; }
.social-icons a { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.social-icons a:hover { background: var(--purple); transform: translateY(-2px); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid #f3f4f6; border-radius: var(--radius-md); padding: 24px 28px; margin-bottom: 16px; }
.faq-item h3 { font-family: var(--font-sans); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.faq-item p { color: #6b7280; font-size: 14px; line-height: 1.6; }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.color-strip { display: grid; grid-template-columns: repeat(4, 1fr); height: 3px; }
.color-strip span { display: block; }
.color-strip .c-purple { background: var(--purple); }
.color-strip .c-crimson { background: var(--crimson); }
.color-strip .c-royal { background: var(--royal); }
.color-strip .c-gold { background: var(--gold); }
