@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;1,6..72,400&display=swap');

:root {
  /* Core Brand Colors */
  --bg-base: #0C1511;
  --bg-surface: #111D17;
  --bg-surface-elevated: #16261E;

  --sage-primary: #7F9E88;
  --sage-light: #A0B7A5;
  --sage-muted: rgba(127, 158, 136, 0.4);

  --gold-accent: #D6B36A;
  --gold-muted: rgba(214, 179, 106, 0.6);

  --text-primary: #F2EFE7;
  --text-secondary: #EAE7DD;
  --text-tertiary: #A0B7A5;

  /* Typography */
  --font-serif: 'Newsreader', serif;
  --font-sans: 'Manrope', sans-serif;

  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography Elements */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--sage-light);
  letter-spacing: 0.02em;
}

p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

a {
  color: var(--gold-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--text-primary);
}

/* Layout */
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Header / Wordmark */
header {
  padding: 48px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand a {
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.brand a::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--gold-accent);
  transition: var(--transition-smooth);
  opacity: 0.5;
}

.brand a:hover::after {
  width: 100%;
  opacity: 1;
}

/* Hero Section */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8vh 0 12vh;
}

.hero h1 {
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-tertiary);
  max-width: 500px;
  margin: 0 auto 48px;
}

/* Buttons */
.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: var(--sage-primary);
  color: var(--bg-base);
  border: 1px solid var(--sage-primary);
}

.btn-primary:hover {
  background-color: var(--sage-light);
  border-color: var(--sage-light);
  color: var(--bg-base);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--sage-muted);
}

.btn-secondary:hover {
  border-color: var(--sage-primary);
  background-color: rgba(127, 158, 136, 0.05);
  color: var(--text-primary);
}

/* Page Header (Inner pages) */
.page-header {
  padding: 24px 0 48px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--sage-primary);
  font-family: var(--font-serif);
  font-style: italic;
}

/* Content Container */
.content {
  background-color: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 56px;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Inner Content Typography */
.content h2 {
  font-size: 1.5rem;
  margin: 48px 0 20px;
  color: var(--gold-accent);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(214, 179, 106, 0.15);
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  margin: 32px 0 12px;
}

.content p {
  margin-bottom: 20px;
}

.content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content li {
  margin-bottom: 10px;
  color: var(--text-secondary);
  padding-left: 8px;
}

.content li::marker {
  color: var(--sage-primary);
}

/* Support FAQ Blocks */
.faq-item {
  margin-bottom: 32px;
  background: var(--bg-surface-elevated);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.02);
}

.faq-item h3 {
  margin: 0 0 12px 0;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.contact-block {
  background: linear-gradient(145deg, var(--bg-surface-elevated), var(--bg-surface));
  border: 1px solid rgba(214, 179, 106, 0.2);
  padding: 32px;
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 48px;
}

.contact-block a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 12px;
}

/* Footer */
footer {
  text-align: center;
  padding: 48px 0;
  margin-top: auto;
  border-top: 1px solid rgba(127, 158, 136, 0.1);
}

footer .brand-footer {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-style: italic;
}

footer .slogan {
  color: var(--sage-primary);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

footer .copyright {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    padding: 32px 24px;
    border-radius: var(--radius-md);
  }

  .actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}
