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

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-base);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  background: var(--color-bg-dark);
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--text-4xl); font-weight: 200; }
h2 { font-size: var(--text-3xl); font-weight: 300; }
h3 { font-size: var(--text-2xl); font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-violet);
  display: block;
  margin-bottom: var(--space-sm);
}

.rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-sm) 0 var(--space-md);
}

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: var(--transition-base);
  cursor: pointer;
}

.btn--outline {
  border: 1px solid var(--color-gold);
  color: var(--color-white);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-gold);
  color: var(--color-text);
}

.btn--outline-dark {
  border: 1px solid var(--color-gold);
  color: var(--color-text);
  background: transparent;
}

.btn--outline-dark:hover {
  background: var(--color-gold);
  color: var(--color-white);
}

.btn--solid {
  background: var(--color-gold);
  color: var(--color-white);
  border: 1px solid var(--color-gold);
}

.btn--solid:hover {
  background: transparent;
  color: var(--color-text);
}

.btn--dark {
  background: var(--color-text);
  color: var(--color-white);
  border: 1px solid var(--color-text);
}

.btn--dark:hover {
  background: var(--color-violet);
  border-color: var(--color-violet);
  color: var(--color-white);
}

/* Text link with animated underline */
.text-link {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.text-link:hover::after {
  width: 100%;
}

/* Page header (shared across inner pages) */
.page-header {
  height: 40vh;
  min-height: 280px;
  background: linear-gradient(145deg, #EDE5F2 0%, #D8C8E8 50%, #C4B0D8 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-lg);
  margin-top: var(--nav-height);
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 30, 0.35);
}

.page-header__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-header .eyebrow {
  color: rgba(255,255,255,0.75);
}

.page-header h1 {
  font-style: normal;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
}

/* Section spacing */
.section {
  padding: var(--space-xl) 0;
}

.section--dark {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Artwork placeholder */
.artwork-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #D8CCE8 0%, #C4B0D8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
}

.artwork-placeholder span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.8;
}

/* Footer */
footer {
  background: var(--color-text);
  color: rgba(253, 251, 255, 0.65);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 251, 255, 0.4);
  margin-bottom: var(--space-sm);
}

.footer__address p {
  font-size: var(--text-sm);
  line-height: 1.9;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-gold-light);
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__social a:hover {
  color: var(--color-gold-light);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(253, 251, 255, 0.1);
  padding-top: var(--space-md);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  color: rgba(253, 251, 255, 0.3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
