/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===== CSS RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #000000;
  --bg-surface: #0a0a0a;
  --bg-card: #111111;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #666666;
  --accent: #c8a96e;
  --accent-glow: rgba(200, 169, 110, 0.25);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(200, 169, 110, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== AMBIENT BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(200, 169, 110, 0.03) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(200, 169, 110, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: ambientShift 20s ease-in-out infinite alternate;
}

@keyframes ambientShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-2%, -1%) rotate(1deg); }
}

/* ===== MAIN WRAPPER ===== */
.page-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

/* ===== HEADER / LOGO ===== */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0 40px;
  animation: fadeInDown 1s ease-out;
}

.logo-container {
  position: relative;
}

.logo-container::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: lineExpand 1.5s ease-out 0.5s both;
}

@keyframes lineExpand {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

.logo {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(200, 169, 110, 0.1));
  transition: filter 0.4s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 40px rgba(200, 169, 110, 0.2));
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  max-width: 500px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), var(--accent), var(--border-subtle), transparent);
  margin: 40px 0;
  animation: fadeIn 1.2s ease-out 0.3s both;
}

/* ===== INFO SECTION ===== */
.info-section {
  width: 100%;
  max-width: 600px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px 40px;
  backdrop-filter: blur(10px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.info-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px var(--accent-glow);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row:first-child {
  padding-top: 0;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.info-value {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.info-value.address {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.info-value.mono {
  font-family: 'Inter', monospace;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
  width: 100%;
  margin-top: auto;
  padding: 48px 0 32px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ===== POLICY PAGES ===== */
.policy-content {
  padding: 36px 40px;
}

.policy-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 16px;
  text-align: justify;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content span {
  font-size: inherit !important;
  color: inherit !important;
}

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

.policy-content em {
  color: var(--accent);
  font-style: italic;
}

.policy-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: 0.02em;
}

.policy-heading:first-of-type {
  margin-top: 24px;
}

.policy-list {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  margin: 16px 0;
  padding-left: 24px;
}

.policy-list li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.policy-list li::marker {
  color: var(--accent);
}

.policy-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.policy-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.policy-content a.link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.policy-content a.link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .header {
    padding: 40px 0 28px;
  }

  .logo {
    width: 160px;
  }

  .company-name {
    font-size: 1.5rem;
  }

  .info-card {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .footer-links {
    gap: 20px;
  }

  .divider {
    margin: 28px 0;
  }
}
