/* ExperienceBloom — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
  font-family: 'Barlow Condensed';
  src: url('fonts/BarlowCondensed-Thin.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #080808;
  --white: #f0ede8;
  --accent: #c8b89a;
  --dim: #6b6660;
  --rule: rgba(200,184,154,0.12);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrapper { max-width: 680px; margin: 0 auto; padding: 0 2rem; }

nav { border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }

.nav-inner {
  max-width: 680px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.nav-wordmark {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 200; font-size: 1.25rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 0.7rem;
}

.nav-logomark {
  height: 1.9rem; width: auto; flex-shrink: 0;
  color: var(--white);
}

.nav-links { display: flex; gap: 1.75rem; list-style: none; }

.nav-links a {
  font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dim); text-decoration: none; transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--accent); }

.page-header { padding: 4rem 0 3rem; border-bottom: 1px solid var(--rule); margin-bottom: 3.5rem; }

.hero-lockup {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.hero-logomark {
  height: 0.86em; width: auto;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  top: -0.03em;
}

h1 {
  font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  font-weight: 200; font-size: clamp(1.875rem, 6vw, 3.25rem);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.75rem;
}

.tagline {
  font-family: 'Georgia', serif; font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--accent);
  letter-spacing: 0.02em; line-height: 1.6;
}

section { margin-bottom: 3.5rem; }

.section-label {
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 1.5rem;
}

p {
  font-size: 0.9375rem; color: rgba(240,237,232,0.75);
  margin-bottom: 1.25rem; letter-spacing: 0.01em;
}

p:last-child { margin-bottom: 0; }

.product-card {
  border: 1px solid var(--rule); border-radius: 6px;
  overflow: hidden; margin-bottom: 2.5rem;
}

.product-card img { width: 100%; display: block; }
.product-card-body { padding: 1.75rem; }

.product-name {
  font-family: 'Georgia', serif; font-size: 1.125rem;
  color: var(--accent); letter-spacing: 0.03em; margin-bottom: 0.5rem;
}

.product-platform {
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim); display: block; margin-bottom: 1rem;
}

.product-desc { font-size: 0.9rem; color: rgba(240,237,232,0.6); line-height: 1.6; }

.store-link {
  display: inline-block; margin-top: 1.25rem;
  border: 1px solid var(--rule); border-radius: 4px;
  padding: 0.6rem 1.1rem;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.store-link:hover { border-color: var(--accent); color: var(--white); }

.faq-item { border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }

.faq-q {
  font-family: 'Georgia', serif; font-size: 1rem;
  color: var(--accent); margin-bottom: 0.5rem;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.contact-label {
  font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 0.5rem;
}

.contact-value { font-size: 0.9rem; color: rgba(240,237,232,0.75); }
.contact-value a { color: var(--accent); text-decoration: none; }

footer { border-top: 1px solid var(--rule); padding: 2.5rem 0 4rem; margin-top: 3rem; }

.footer-inner {
  max-width: 680px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem;
}

.footer-legal { font-size: 0.75rem; color: var(--dim); line-height: 1.8; }
.footer-links { list-style: none; font-size: 0.75rem; line-height: 2; }
.footer-links a { color: var(--dim); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 520px) {
  .contact-grid { grid-template-columns: 1fr; }
  .nav-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}
