/* =============================================================================
   Secure Memories — Global Luxury Theme
   ============================================================================= */

:root {
  /* Palette: Dark Luxury */
  --bg-deep: #050505;
  --bg-panel: #121212;
  --text-main: #E0E0E0;
  --text-muted: #9E9E9E;

  /* Accents */
  --gold: #D4A068;
  --gold-dim: #8C6A45;
  --gold-light: #E6C298;

  /* UI Elements */
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(212, 160, 104, 0.5);

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
}

a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

/* === Components === */

/* Buttons */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-luxury:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 160, 104, 0.3);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.btn-text:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Cards */
.luxury-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.luxury-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-5px);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* === Navigation (Site Header) === */
/* Note: This styles the shadow DOM content if exposed, or global styles if light DOM */
site-header {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0;
  /* Removed 1.5rem padding to align with other pages */
}

/* === Footer === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

/* === Utilities === */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.gold {
  color: var(--gold);
}

/* === Animations === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.fade-in {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

/* =========================================
   The Process (Steps) - Migrated from About
   ========================================= */
.section-steps {
  background: #0A0A0A;
  padding: 6rem 2rem;
  overflow: hidden;
}

.steps-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.steps-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  color: var(--text-main);
}

.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  width: 100%;
}

/* Responsive: Scroll on mobile/tablet */
@media (max-width: 1100px) {
  .steps-horizontal {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
  }

  .step-item {
    min-width: 280px;
    scroll-snap-align: center;
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  height: 100%;
}

.step-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-item:hover .step-number {
  opacity: 1;
}

.step-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.step-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}