/* ─── Design Tokens ──────────────────────────────────────────────────────────
   Edit these variables to retheme the entire card.
   ─────────────────────────────────────────────────────────────────────────── */
:root {
  --bg:            #0E0E11;
  --surface:       #17171B;
  --border:        rgba(255, 255, 255, 0.08);
  --text:          #F4F1EA;
  --muted:         #9A968E;
  --gold:          #C9A86A;
  --gold-bright:   #D8BC84;
  --gold-glow:     rgba(201, 168, 106, 0.15);
  --radius-card:   20px;
  --radius-btn:    12px;
  --font:          'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Page Shell ─────────────────────────────────────────────────────────── */
.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

/* ─── Load Animation ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
.fade-up:nth-child(4) { animation-delay: 0.35s; }
.fade-up:nth-child(5) { animation-delay: 0.42s; }
.fade-up:nth-child(6) { animation-delay: 0.49s; }
.fade-up:nth-child(7) { animation-delay: 0.56s; }
.fade-up:nth-child(8) { animation-delay: 0.63s; }
.fade-up:nth-child(9) { animation-delay: 0.70s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.header {
  display: flex;
  justify-content: center;
  padding: 40px 0 0;
}

.header .logo {
  height: 56px;
  width: auto;
  opacity: 0.92;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 48px 0 40px;
}

/* Gold glow */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(201,168,106,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__name {
  position: relative;
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 10px;
}

.hero__title {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero__tagline {
  position: relative;
  font-size: 0.975rem;
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Primary CTA ────────────────────────────────────────────────────────── */
.cta-save {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #C9A86A 0%, #D8BC84 50%, #C9A86A 100%);
  border-radius: var(--radius-btn);
  color: #0E0E11;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201, 168, 106, 0.28);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  margin-bottom: 32px;
}

.cta-save:hover,
.cta-save:focus-visible {
  opacity: 0.9;
  box-shadow: 0 6px 32px rgba(201, 168, 106, 0.40);
  transform: translateY(-1px);
}

.cta-save:active { transform: translateY(0); opacity: 1; }

/* ─── Quick Actions Row ──────────────────────────────────────────────────── */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 16px 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.quick-btn svg { stroke: var(--gold); flex-shrink: 0; }

.quick-btn:hover,
.quick-btn:focus-visible {
  background: #1E1E23;
  border-color: rgba(201, 168, 106, 0.25);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.quick-btn:active { transform: translateY(0); }

/* ─── Card Surface ───────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  margin-bottom: 16px;
}

/* ─── About ──────────────────────────────────────────────────────────────── */
.about__heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.about__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Services Grid ──────────────────────────────────────────────────────── */
.services-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.service-tile:hover { border-color: rgba(201,168,106,0.2); }

.service-tile svg { stroke: var(--gold); flex-shrink: 0; }

.service-tile__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.service-tile__sub {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Links Section ──────────────────────────────────────────────────────── */
.links-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 15px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-align: left;
}

.link-btn:last-child { margin-bottom: 0; }

.link-btn svg { stroke: var(--gold); flex-shrink: 0; }

.link-btn:hover,
.link-btn:focus-visible {
  border-color: rgba(201,168,106,0.3);
  color: var(--gold-bright);
  background: #121215;
}

.link-btn .arrow {
  margin-left: auto;
  stroke: var(--muted);
}

/* ─── Service Area ───────────────────────────────────────────────────────── */
.service-area {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  padding: 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-area svg { stroke: var(--gold); opacity: 0.7; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(154, 150, 142, 0.5);
  letter-spacing: 0.03em;
}

/* ─── Desktop ────────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .page { padding-bottom: 72px; }
  .hero__name { font-size: 3rem; }
  .card { padding: 32px 28px; }
}
