/* ============================================================
   base.css — Global resets, body, and shared button styles
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--obsidian);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none; /* Custom cursor — remove if you want default cursor */
}

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

a {
  text-decoration: none;
}

/* ── SHARED: Section label (small uppercase tag above titles) ── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
}

/* ── SHARED: Section title ── */
h2.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--obsidian);
  margin-bottom: 24px;
}
h2.section-title.light {
  color: var(--ivory);
}
h2.section-title em {
  font-style: italic;
  color: var(--amber);
}

/* ── SHARED: Primary button (amber filled) ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--amber);
  color: var(--obsidian);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: none;
  border-radius: 2px;
  transition: background var(--duration), transform var(--duration);
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ── SHARED: Ghost button (text only with arrow) ── */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ash-light);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--duration);
}
.btn-ghost:hover {
  color: var(--ivory);
}
.btn-ghost svg {
  transition: transform var(--duration);
}
.btn-ghost:hover svg {
  transform: translateX(4px);
}

/* ── SHARED: Custom cursor ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.25s ease, height 0.25s ease;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}

/* ── SHARED: Lightbox (video popup) ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  width: 90vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}
.lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  color: var(--ash);
  font-size: 28px;
  cursor: none;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--duration);
}
.lightbox-close:hover {
  color: var(--ivory);
}
