/* ============================================================
   VSR — Verlando Small: Reimagined
   Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

:root {
  --gold:        #dab322;
  --gold-light:  #ecd060;
  --gold-dim:    #a88a18;
  --gold-subtle: #1e1a06;
  --black:       #080808;
  --black-2:     #0e0c08;
  --surface-1:   #111009;
  --surface-2:   #1a1810;
  --border:      #2e2a1a;
  --border-dim:  #1e1c12;
  --text-primary:   #f5f0e8;
  --text-secondary: #c8bfaa;
  --text-muted:     #8a8070;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
em, i { font-style: italic; }

.ui-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.ui-label-muted {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
p { color: var(--text-secondary); line-height: 1.85; }

/* ── Links ── */
a { color: inherit; text-decoration: none; }

/* ── Gold divider ── */
.divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 auto;
}
.divider-left { margin: 0; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-decoration: none;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

/* ── Nav ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(8,8,8,0.97);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(8px);
}

/* Logotype image in nav */
.nav-logo-img {
  display: block;
  height: 32px;
  width: auto;
}

/* Fallback text logo (remove once logotype is added) */
.nav-logo {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-primary); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 7px 18px;
  transition: background 0.2s, color 0.2s;
}
.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Hamburger (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
}

/* ── Footer ── */
footer.site-footer {
  border-top: 0.5px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo-img {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.75;
}
.footer-logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
}

/* ── Photo placeholder ── */
.photo-placeholder {
  background: var(--surface-1);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.photo-placeholder::after {
  content: attr(data-label);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: absolute;
  padding: 8px;
  text-align: center;
}

/* ── Section wrapper ── */
.section {
  padding: 80px 48px;
  border-bottom: 0.5px solid var(--border-dim);
}
.section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 48px;
}
.section-header .ui-label {
  display: block;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
}

/* ── Fade-in on scroll ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav.site-nav { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 20px; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,8,0.99); padding: 28px 24px; border-bottom: 0.5px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 56px 24px; }
  footer.site-footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}
