/* ============================================
   cgaspar.art — Global Stylesheet
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --bg: #1A1A1A;
  --bg-secondary: #222222;
  --bg-tertiary: #2A2726;
  --text: #E8E0D8;
  --text-secondary: #A09890;
  --gold: #C4A97D;
  --gold-dim: #9E8A6A;
  --sold: #6B5B4F;
  --border-subtle: rgba(196, 169, 125, 0.1);
  --border-medium: rgba(196, 169, 125, 0.2);
  --overlay-gold: rgba(196, 169, 125, 0.08);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
::selection {
  background: rgba(196, 169, 125, 0.3);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--border-subtle);
}
.nav__name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text);
}
.nav__links {
  display: flex; gap: 32px; align-items: center;
  list-style: none;
}
.nav__link {
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}
.nav__link:hover { color: var(--gold); }
.nav__link--active { color: var(--gold); }
.nav__link--moon { color: var(--gold); }
.nav__link--moon::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  position: absolute; top: -8px; left: 50%;
  transform: translateX(-50%);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none; cursor: pointer;
  flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 1px; background: var(--text);
  transition: all 0.3s ease; display: block;
}
.nav__mobile {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  flex-direction: column; justify-content: center; align-items: center;
  gap: 32px; z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.nav__mobile a:hover { color: var(--gold); }
.nav__close {
  position: absolute; top: 20px; right: 40px;
  font-size: 24px; color: var(--text-secondary);
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body);
}

@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(196,169,125,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(107,91,79,0.08) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, var(--bg-tertiary) 0%, var(--bg) 70%);
}
.hero--image {
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(26,26,26,0.4), rgba(26,26,26,0.6));
  z-index: 1;
}
.hero__content {
  text-align: center; position: relative; z-index: 2;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}
.hero__line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.5s forwards;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300; letter-spacing: 0.12em;
  text-transform: uppercase; line-height: 1.1;
}
.hero__subtitle {
  font-size: 14px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 24px; line-height: 1.8;
}
.hero__actions {
  margin-top: 48px;
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1.5s ease 0.8s forwards;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeIn 2s ease 1.5s forwards;
}
.hero__scroll span {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-secondary);
  opacity: 0.4;
}
.hero__scroll-line {
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--text-secondary), transparent);
  opacity: 0.4;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 14px 32px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn--gold {
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
}
.btn--gold:hover {
  background: var(--gold);
  color: var(--bg);
}
.btn--ghost {
  color: var(--text-secondary);
  border: 1px solid rgba(160, 152, 144, 0.3);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text);
}
.btn--solid {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn--solid:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
}
.btn--small {
  padding: 10px 24px;
  font-size: 11px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 120px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section__header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 60px;
}
.section__title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.section__link {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  border-bottom: 1px solid rgba(160, 152, 144, 0.2);
  padding-bottom: 2px; transition: all 0.3s ease;
}
.section__link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .section { padding: 80px 20px; }
  .section__header { flex-direction: column; gap: 16px; margin-bottom: 40px; }
}

/* ---------- WORK GRID ---------- */
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
@media (max-width: 768px) {
  .works-grid { grid-template-columns: 1fr; }
}

.work-card { cursor: pointer; display: block; }
.work-card__image {
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
  min-height: 300px;
}
.work-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.work-card__image::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--overlay-gold);
  opacity: 0; transition: opacity 0.4s ease;
}
.work-card:hover .work-card__image::after { opacity: 1; }

.work-card__status {
  position: absolute; top: 16px; right: 16px;
  display: flex; align-items: center; gap: 6px; z-index: 2;
}
.work-card__dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.work-card__dot--available { background: var(--gold); }
.work-card__dot--sold { background: #8B3A3A; box-shadow: 0 0 6px rgba(139, 58, 58, 0.4); }
.work-card__status-text {
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}

.work-card__info { padding: 16px 0; }
.work-card__title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; font-style: italic;
}
.work-card__meta {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-top: 6px;
}
.work-card__details {
  font-size: 12px; color: var(--text-secondary);
}
.work-card__price {
  font-size: 13px; color: var(--gold);
  letter-spacing: 0.02em;
}
.work-card--sold .work-card__image { opacity: 0.7; }
.work-card--sold .work-card__title { color: var(--text-secondary); }
.work-card--sold .work-card__price { color: var(--sold); }
.piece__sold-to {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 4px;
}

/* ---------- GALLERY PAGE ---------- */
.gallery-section {
  margin-bottom: 80px;
}
.gallery-section__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ---------- PIECE DETAIL ---------- */
.piece {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.piece__image {
  width: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}
.piece__image img {
  width: 100%;
}
.piece__detail-image {
  width: 100%;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 48px;
}
.piece__title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; font-style: italic;
  margin-bottom: 24px;
}
.piece__info {
  margin-bottom: 32px;
}
.piece__info-row {
  display: flex; gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.piece__info-label {
  min-width: 100px;
  color: var(--text-secondary);
}
.piece__info-value {
  color: var(--text);
}
.piece__status {
  display: flex; align-items: center; gap: 8px;
  margin: 24px 0;
}
.piece__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.piece__status-dot--available { background: var(--gold); }
.piece__status-dot--sold { background: #8B3A3A; box-shadow: 0 0 8px rgba(139, 58, 58, 0.4); }
.piece__status-text {
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
}
.piece__price {
  font-size: 20px; color: var(--gold);
  margin: 16px 0 24px;
  font-family: var(--font-display);
}
.piece__viewing-room-text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-style: italic;
}
.piece__description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 32px 0;
  max-width: 600px;
}
.piece__note {
  font-size: 12px;
  color: var(--text-secondary);
  opacity: 0.7;
  margin-bottom: 32px;
}
.piece__back {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  border-bottom: 1px solid rgba(160, 152, 144, 0.2);
  padding-bottom: 2px; transition: all 0.3s ease;
  margin-top: 48px;
}
.piece__back:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.piece__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .piece { padding: 100px 20px 60px; }
}

/* ---------- VIEWING ROOM MODAL ---------- */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 200;
  justify-content: center; align-items: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: var(--bg-secondary);
  max-width: 500px; width: 100%;
  padding: 48px 40px;
  position: relative;
}
.modal__close {
  position: absolute; top: 16px; right: 20px;
  font-size: 20px; color: var(--text-secondary);
  cursor: pointer; background: none; border: none;
  font-family: var(--font-body);
}
.modal__close:hover { color: var(--text); }
.modal__title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 300;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.modal__privacy {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.modal__options {
  display: flex; flex-direction: column; gap: 24px;
}
.modal__option-label {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 12px;
}
.modal__email-form {
  display: flex; gap: 0;
}
.modal__email-input {
  flex: 1; padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-medium);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body); font-size: 13px;
  outline: none;
}
.modal__email-input::placeholder {
  color: rgba(160, 152, 144, 0.4);
}
.modal__email-input:focus {
  border-color: var(--gold);
}
.modal__email-submit {
  padding: 14px 20px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer;
}
.modal__email-submit:hover {
  background: var(--gold-dim);
}
.modal__divider {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  position: relative;
}
.modal__divider::before,
.modal__divider::after {
  content: '';
  position: absolute; top: 50%;
  width: 40%; height: 1px;
  background: var(--border-subtle);
}
.modal__divider::before { left: 0; }
.modal__divider::after { right: 0; }
.modal__guest-btn {
  text-align: center;
}

/* Modal price reveal state */
.modal__result {
  display: none;
  text-align: center;
}
.modal__result.visible {
  display: block;
}
.modal__result-price {
  font-family: var(--font-display);
  font-size: 28px; color: var(--gold);
  margin: 24px 0;
}
.modal__result-status {
  font-size: 13px; color: var(--text-secondary);
  margin-bottom: 24px;
}
.modal__result-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center;
}

/* ---------- FULL MOON SECTION ---------- */
.full-moon {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tertiary) 50%, var(--bg) 100%);
  text-align: center;
}
.full-moon__inner {
  max-width: 600px; margin: 0 auto;
}
.full-moon__icon {
  width: 48px; height: 48px; border-radius: 50%;
  margin: 0 auto 32px;
  background: radial-gradient(circle at 35% 35%, var(--text) 0%, var(--gold-dim) 50%, var(--bg-tertiary) 100%);
  box-shadow: 0 0 40px rgba(196, 169, 125, 0.15);
}
.full-moon__title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.full-moon__desc {
  font-size: 15px; line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 20px; max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.full-moon__date-box {
  margin-top: 40px; padding: 28px 32px;
  border: 1px solid var(--border-medium);
  background: rgba(26, 26, 26, 0.5);
}
.full-moon__date-label {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dim);
}
.full-moon__date {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 300;
  margin-top: 12px;
}
.full-moon__signup { margin-top: 32px; }
.full-moon__signup p {
  font-size: 13px; color: var(--text-secondary); margin-bottom: 16px;
}
.full-moon__form {
  display: flex; gap: 0;
  max-width: 400px; margin: 0 auto;
}
.full-moon__input {
  flex: 1; padding: 14px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-right: none;
  color: var(--text);
  font-family: var(--font-body); font-size: 13px;
  outline: none;
}
.full-moon__input::placeholder {
  color: rgba(160, 152, 144, 0.4);
}
.full-moon__input:focus {
  border-color: var(--gold);
}
.full-moon__submit {
  padding: 14px 24px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s ease;
}
.full-moon__submit:hover { background: var(--gold-dim); }

/* Full Moon page specific */
.full-moon-page {
  padding-top: 120px;
}
.full-moon-page .full-moon {
  padding-top: 0;
}
.full-moon__confirmed {
  display: none;
  background: rgba(196, 169, 125, 0.1);
  border: 1px solid var(--border-medium);
  padding: 20px;
  margin: 24px auto 0;
  max-width: 400px;
  font-size: 14px;
  color: var(--gold);
}
.full-moon__confirmed.visible { display: block; }

.full-moon__archive {
  max-width: var(--max-width);
  margin: 80px auto 0;
  padding: 0 40px;
}
.full-moon__archive-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 40px;
  text-align: center;
}
.full-moon__archive-empty {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .full-moon { padding: 80px 20px; }
}

/* ---------- PRIVACY BANNER ---------- */
.privacy-banner {
  padding: 60px 40px;
  max-width: 700px; margin: 0 auto;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.privacy-banner__text {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300; font-style: italic;
  color: var(--text-secondary); line-height: 1.6;
}
.privacy-banner__sub {
  font-family: var(--font-body);
  font-size: 14px; font-style: normal;
  display: block; margin-top: 8px;
}

/* ---------- SHOP PAGE ---------- */
.shop-section {
  margin-bottom: 80px;
}
.shop-section__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .shop-grid { grid-template-columns: 1fr; }
}
.shop-card {
  display: block;
}
.shop-card__image {
  aspect-ratio: 1/1;
  background: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  position: relative;
}
.shop-card__edition {
  font-size: 11px;
  color: var(--gold-dim);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.shop-card__title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 500; font-style: italic;
}
.shop-card__price {
  font-size: 14px; color: var(--gold);
  margin-top: 4px;
}
.shop-card__soldout {
  font-size: 12px; color: var(--sold);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 8px;
}

.size-selector {
  display: flex; gap: 8px; margin: 12px 0;
}
.size-selector__option {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.size-selector__option:hover,
.size-selector__option.active {
  border-color: var(--gold);
  color: var(--gold);
}

.licensing-section {
  max-width: 600px;
}
.licensing-section p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- ABOUT PAGE ---------- */
.about {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.about__headshot {
  width: 200px; height: 200px;
  background: var(--bg-secondary);
  margin-bottom: 48px;
}
.about__headshot img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__section {
  margin-bottom: 48px;
}
.about__section-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.about__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}
.about__text p {
  margin-bottom: 16px;
}
.about__cv-list {
  list-style: none;
  font-size: 14px;
  color: var(--text-secondary);
}
.about__cv-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(196, 169, 125, 0.05);
}
.about__cv-empty {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.5;
  font-style: italic;
}
.about__links a {
  color: var(--gold);
  transition: color 0.3s ease;
}
.about__links a:hover {
  color: var(--gold-dim);
}
.about__contact {
  font-size: 15px;
  color: var(--text-secondary);
}
.about__contact a {
  color: var(--gold);
}
.about__social {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.about__social a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .about { padding: 100px 20px 60px; }
}

/* ---------- LEGAL PAGES ---------- */
.legal {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}
.legal__title {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 300;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 48px;
}
.legal__section {
  margin-bottom: 40px;
}
.legal__section h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  margin-bottom: 16px;
  color: var(--text);
}
.legal__section p,
.legal__section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal__section ul {
  list-style: none;
  padding-left: 0;
}
.legal__section li::before {
  content: "\2014\00a0";
  color: var(--gold-dim);
}
.legal__pending {
  font-size: 14px;
  color: var(--text-secondary);
  opacity: 0.6;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .legal { padding: 100px 20px 60px; }
}

/* ---------- 404 PAGE ---------- */
.four-oh-four {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 40px;
}
.four-oh-four__title {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 300;
  margin-bottom: 32px;
}
.four-oh-four__links {
  display: flex; gap: 24px;
  flex-wrap: wrap; justify-content: center;
}
.four-oh-four__links a {
  font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--border-medium);
  padding-bottom: 2px; transition: all 0.3s ease;
}
.four-oh-four__links a:hover {
  border-bottom-color: var(--gold);
}

/* ---------- PAGE HEADER (interior pages) ---------- */
.page-header {
  padding: 120px 40px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  letter-spacing: 0.08em; text-transform: uppercase;
}

@media (max-width: 768px) {
  .page-header { padding: 100px 20px 40px; }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 40px 40px;
  max-width: var(--max-width); margin: 0 auto;
  border-top: 1px solid rgba(196, 169, 125, 0.08);
}
.footer__top {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 40px;
}
.footer__name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer__location {
  font-size: 12px; color: var(--text-secondary); margin-top: 8px;
}
.footer__nav { display: flex; gap: 32px; }
.footer__nav a {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color 0.3s ease;
}
.footer__nav a:hover { color: var(--gold); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 11px; color: rgba(160, 152, 144, 0.5);
  transition: color 0.3s ease;
}
.footer__legal a:hover { color: var(--text-secondary); }
.footer__bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(196, 169, 125, 0.05);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer__copy {
  font-size: 11px; color: rgba(160, 152, 144, 0.4);
}
.footer__also {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(160, 152, 144, 0.25);
}
.footer__also a {
  color: rgba(160, 152, 144, 0.4);
  transition: color 0.3s ease;
}
.footer__also a:hover { color: var(--text-secondary); }

@media (max-width: 768px) {
  .footer { padding: 40px 20px 30px; }
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__nav, .footer__legal { flex-wrap: wrap; gap: 16px; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 16px 40px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px;
  z-index: 150;
  font-size: 13px;
  color: var(--text-secondary);
}
.cookie-banner.hidden { display: none; }
.cookie-banner a { color: var(--gold); }
.cookie-banner__btn {
  padding: 8px 20px;
  background: var(--gold);
  color: var(--bg);
  border: none;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
}
.cookie-banner__btn:hover { background: var(--gold-dim); }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; padding: 16px 20px; text-align: center; }
}

/* ---------- UTILITIES ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
