/* ==========================================================================
   ASHEN PEAK STUDIO — REFINED DESIGN SYSTEM
   Theme: Cold Silver & Steel • Dark Obsidian • Minimalist Celtic Elegance
   ========================================================================== */

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

:root {
  /* Obsidian & Gunmetal Base */
  --bg-abyss: #07080a;
  --bg-obsidian: #0b0d12;
  --bg-slate: #11141c;
  --bg-card: rgba(15, 18, 26, 0.7);
  --bg-card-hover: rgba(22, 27, 38, 0.85);

  /* Metallic Silver & Platinum Accents (Matching Medallion) */
  --color-silver-light: #f1f5f9;
  --color-silver: #cbd5e1;
  --color-silver-dim: #94a3b8;
  --color-steel: #64748b;
  --color-steel-dark: #334155;

  /* Subtle Steel-Blue Sheen */
  --color-accent-blue: #93c5fd;
  --color-accent-cyan: #7dd3fc;
  --color-accent-glow: rgba(147, 197, 253, 0.2);

  /* Borders & Glassmorphism */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-silver: rgba(203, 213, 225, 0.22);
  --border-silver-strong: rgba(241, 245, 249, 0.45);

  /* Text Colors */
  --text-pure: #ffffff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Typography */
  --font-mythic: 'Cinzel', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-silver: 0 0 30px rgba(203, 213, 225, 0.12);

  /* Layout */
  --max-width: 1240px;
  --nav-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(148, 163, 184, 0.06) 0%, transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(125, 211, 252, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 75%, rgba(148, 163, 184, 0.03) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-abyss);
}
::-webkit-scrollbar-thumb {
  background: #1e2430;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #384252;
}

/* Base Typography */
h1, h2, h3, h4, .font-mythic {
  font-family: var(--font-mythic);
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-pure);
}

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

img, svg {
  display: block;
  max-width: 100%;
}

button, input, textarea, select {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Common */
.section {
  padding: 100px 0;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mythic);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-silver);
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--color-silver-dim);
  opacity: 0.5;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 40%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* Subtle Celtic Divider */
.celtic-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px auto;
  opacity: 0.45;
}

.celtic-divider .line {
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--color-silver), transparent);
}

.celtic-divider .rune {
  color: var(--color-silver);
  font-family: var(--font-mythic);
  font-size: 1.1rem;
}
