/* Generated by web-builder-mcp */

:root {
  --color-bg: #0f1419;
  --color-bg-alt: #1a2332;
  --color-text: #e8e6e3;
  --color-text-muted: #8b9298;
  --color-primary: #c8a97e;
  --color-primary-dark: #b08d5e;
  --color-accent: #e8c590;
  --color-surface: #1a2332;
  --color-border: #2a3442;
  --font-family: Barlow, system-ui, sans-serif;
  --font-size-base: 1rem;
  --line-height-base: 1.6;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --max-width: 1200px;
  --nav-height: 64px;
  --transition: 200ms ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: var(--color-bg);
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--spacing-md);
  background: var(--color-primary);
  color: #fff;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Layout utilities */
.container { width: 100%; max-width: var(--max-width); margin-inline: auto; padding-inline: var(--spacing-md); }
.container-narrow { max-width: 720px; margin-inline: auto; }
.container-form { max-width: 600px; margin-inline: auto; }
.mt-xl { margin-top: var(--spacing-xl); }
.form-error { color: #dc2626; margin-bottom: var(--spacing-md); display: none; }
.form-success { color: #16a34a; margin-bottom: var(--spacing-md); display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.flow > * + * { margin-top: var(--spacing-md); }

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}
.nav-logo:hover { text-decoration: none; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-md);
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-links {
  display: none;
  list-style: none;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-md);
  gap: var(--spacing-sm);
}
.nav-links.is-open { display: flex; }
.nav-links a {
  display: block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
}
.nav-links a:hover { background: var(--color-bg-alt); text-decoration: none; }
.nav-links a.active { color: var(--color-primary); font-weight: 700; }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 99;
}
.nav-overlay.is-open { display: block; }

/* Nav phone */
.nav-phone {
  font-weight: 600;
  color: var(--color-text);
}
.nav-phone:hover { text-decoration: none; color: var(--color-primary); }

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--color-primary-dark); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

/* Hero — full-bleed with background image support */
.hero {
  min-height: calc(100vh - var(--nav-height));
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: var(--spacing-3xl) var(--spacing-md);
}
.hero h1 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: var(--spacing-lg); }
.hero p { font-size: 1.125rem; max-width: 600px; margin-inline: auto; margin-bottom: var(--spacing-xl); opacity: 0.9; }
.hero-cta { display: flex; gap: var(--spacing-md); justify-content: center; flex-wrap: wrap; }
.btn-hero-secondary { background: #fff; color: var(--color-primary); }

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--spacing-lg);
}
.trust-badge {
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Sections */
.section { padding: var(--spacing-3xl) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title { font-size: 1.75rem; font-weight: 700; margin-bottom: var(--spacing-xl); }
.section-lead { color: var(--color-text-muted); max-width: 640px; margin-inline: auto; margin-bottom: var(--spacing-2xl); }

/* Feature grid */
.feature-grid {
  display: grid;
  gap: var(--spacing-lg);
  grid-template-columns: 1fr;
}
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 2rem; margin-bottom: var(--spacing-md); }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: var(--spacing-sm); }
.feature-card p { color: var(--color-text-muted); }
.feature-card img { width: 100%; border-radius: var(--radius-md); margin-bottom: var(--spacing-md); }

/* CTA */
.cta { background: var(--color-primary); color: #fff; text-align: center; padding: var(--spacing-3xl) var(--spacing-md); }
.cta h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: var(--spacing-md); }
.cta p { opacity: 0.9; max-width: 560px; margin-inline: auto; margin-bottom: var(--spacing-xl); }
.cta .btn-outline { border-color: #fff; color: #fff; }
.cta .btn-outline:hover { background: #fff; color: var(--color-primary); }

/* Footer */
.site-footer {
  background: #1e293b;
  color: #94a3b8;
  padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-2xl);
  font-size: 0.875rem;
}
.site-footer a { color: #94a3b8; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
h2.footer-col-title,
.footer-col-title {
  color: #e2e8f0;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  margin-top: 0;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--spacing-xs); }
.footer-col p { line-height: 1.7; }
.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(148,163,184,0.2);
  text-align: center;
}

/* Forms */
.form-group { margin-bottom: var(--spacing-lg); }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem var(--spacing-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.required-note { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: var(--spacing-lg); }
.required-star { color: #dc2626; }

/* Page header */
.page-header {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--spacing-2xl) var(--spacing-md);
  text-align: center;
}
.page-header h1 { font-size: 2rem; font-weight: 800; }
.page-header p { color: var(--color-text-muted); margin-top: var(--spacing-sm); }

@media (min-width: 768px) {
  .container { padding-inline: var(--spacing-xl); }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    border-bottom: none;
    padding: 0;
    background: transparent;
  }
  .nav-links a { padding: var(--spacing-xs) var(--spacing-md); }
  .hero h1 { font-size: 2.75rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 2rem; }
}

@media (min-width: 1280px) {
  .hero h1 { font-size: 3.5rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 2.25rem; }
}
