/* ========================================
   Twinvel Studio — Global Stylesheet
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --bg-dark: #0a0a0f;
  --bg-card: #12121a;
  --bg-surface: #1a1a26;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: #8a6f2f;
  --text-primary: #e8e6e1;
  --text-secondary: #9a9790;
  --text-muted: #5a5852;
  --purple-accent: #6b3fa0;
  --purple-glow: rgba(107, 63, 160, 0.15);
  --border-subtle: rgba(201, 168, 76, 0.12);
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.08);
  --font-display: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --max-width: 960px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 300;
  min-height: 100vh;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(to top, var(--bg-dark) 30%, transparent);
  text-align: center;
}

.hero-overlay h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- Sections ---- */
.content-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.content-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.content-section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold-dim);
  margin-top: 0.5rem;
}

.content-section p,
.content-section li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.content-section ul {
  list-style: none;
  padding: 0;
}

.content-section ul li::before {
  content: '—';
  color: var(--gold-dim);
  margin-right: 0.6rem;
}

/* ---- Page Header (inner pages) ---- */
.page-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* ---- Card ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-gold);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer .copyright {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ---- Privacy specifics ---- */
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 2rem 0 0.6rem;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 0.8rem;
}

.legal-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.email-link {
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px dotted var(--gold-dim);
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .site-logo {
    font-size: 1.2rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.78rem;
  }

  .hero-overlay h2 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 0.92rem;
  }

  .content-section {
    padding: 2.5rem 1.25rem;
  }

  .page-hero {
    padding: 3rem 1.25rem 1.5rem;
  }

  .page-hero h1 {
    font-size: 1.5rem;
  }
}

