:root {
  --bg: #0f1010;
  --bg-alt: #171918;
  --surface: #1f2220;
  --surface-alt: #252926;
  --accent: #d95f35;
  --accent-soft: #b24a2b;
  --tan: #e6cf96;
  --tan-soft: #c3aa78;
  --text: #f7f2df;
  --muted: #a89b7a;
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.35rem;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
  --max-width: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: radial-gradient(circle at top, #1c1e1d 0, #060707 55%, #020303 100%);
}

body.theme-light {
  --text: #23140a;
  --muted: #4a3b2c;
  --tan: #3a2917;
  --tan-soft: #6b5133;
  background: radial-gradient(circle at top, #f4f2eb 0, #e1ddcf 55%, #d6d0c0 100%);
  color: var(--text);
}


body.theme-light .site-header {
  background: linear-gradient(135deg, #f0e6cf, #e0d3b7);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .site-footer {
  background: #e8e0cf;
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .section {
  background: radial-gradient(circle at top, #f5efe1 0, #ece4d4 65%, #e0d7c4 100%);
}

body.theme-light .section.alt {
  background: radial-gradient(circle at top, #efe7d8 0, #e4dac8 60%, #d8ceb8 100%);
}

body.theme-light .main-nav a {
  color: #70563a;
}

body.theme-light .main-nav a:hover {
  border-color: rgba(193, 117, 69, 0.7);
  background: rgba(193, 117, 69, 0.12);
  color: #503823;
}

body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1c1e1d 0, #060707 55%, #020303 100%);
  color: var(--text);
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, #141617, #101112);
  border-bottom: 1px solid rgba(230, 207, 150, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--tan-soft);
  border: 1px solid transparent;
}

.main-nav a:hover {
  border-color: rgba(217, 95, 53, 0.7);
  background: rgba(217, 95, 53, 0.1);
  color: var(--tan);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--tan);
  margin: 3px 0;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.hero {
  padding: 3.5rem 1rem 2.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 0.5rem;
}

.hero-tagline {
  margin: 0 0 0.75rem;
  color: var(--tan);
}

.hero-meta {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badge img {
  width: 100%;
  max-width: 280px;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #120b06;
  box-shadow: var(--shadow-soft);
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(230, 207, 150, 0.5);
  color: var(--tan);
}

.btn.secondary:hover {
  background: rgba(230, 207, 150, 0.08);
}

.section {
  padding: 2.5rem 1rem;
  background: radial-gradient(circle at top, #181a18 0, #050605 65%, #020303 100%);
}

.section.alt {
  background: radial-gradient(circle at top, #1f201f 0, #090a09 60%, #030404 100%);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.section p {
  margin-top: 0;
  color: var(--muted);
}

.two-column {
  columns: 2;
  column-gap: 2rem;
  padding-left: 1rem;
}

.two-column li {
  break-inside: avoid;
  margin-bottom: 0.4rem;
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.site-footer {
  border-top: 1px solid rgba(230, 207, 150, 0.15);
  background: #050505;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-badge {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .header-inner {
    align-items: center;
  }

  .main-nav ul {
    position: absolute;
    top: 56px;
    right: 0;
    background: #121314;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-bottom-left-radius: 16px;
    box-shadow: var(--shadow-soft);
    display: none;
  }

  .main-nav ul.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 600px) {
  .brand-title {
    font-size: 0.8rem;
  }
  .brand-subtitle {
    display: none;
  }
  .hero {
    padding-top: 2.4rem;
  }
}

.theme-toggle {
  margin-left: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 207, 150, 0.4);
  background: transparent;
  color: var(--tan-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.theme-toggle-icon {
  font-size: 0.9rem;
}

.theme-toggle-text {
  white-space: nowrap;
}

.theme-toggle:hover {
  background: rgba(230, 207, 150, 0.08);
  color: var(--tan);
  border-color: rgba(230, 207, 150, 0.7);
}

@media (max-width: 800px) {
  .theme-toggle {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
