/* === ZASHA BRAER LLC — Main Stylesheet === */

:root {
  --pri: #2d132c;
  --pri-light: #4a2d49;
  --acc: #c12f29;
  --acc-hover: #a1241e;
  --acc-sec: #3d8b59;
  --acc-sec-hover: #327048;
  --bg: #fcfaf7;
  --bg-alt: #f3efea;
  --card: #ffffff;
  --text: #1a1415;
  --text-med: #5a5153;
  --text-light: #8a8082;
  --border: #ddd8d0;
  --border-light: #ece7df;
  --shad: 0 2px 16px rgba(0,0,0,0.06);
  --shad-lg: 0 6px 30px rgba(0,0,0,0.08);
  --rad: 6px;
  --rad-lg: 10px;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--acc); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--acc-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--pri); line-height: 1.25; font-weight: 700; }
h1 { font-size: 2.6rem; margin-bottom: 0.5em; }
h2 { font-size: 2rem; margin-bottom: 0.6em; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--rad);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  text-align: center;
}
.btn-acc {
  background: var(--acc);
  color: #ffffff;
  border-color: var(--acc);
}
.btn-acc:hover { background: var(--acc-hover); border-color: var(--acc-hover); color: #ffffff; }
.btn-outline {
  background: transparent;
  color: var(--acc);
  border-color: var(--acc);
}
.btn-outline:hover { background: var(--acc); color: #ffffff; }
.btn-sec {
  background: var(--acc-sec);
  color: #ffffff;
  border-color: var(--acc-sec);
}
.btn-sec:hover { background: var(--acc-sec-hover); border-color: var(--acc-sec-hover); color: #ffffff; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: var(--pri);
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}
.nav-brand span { color: var(--acc); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: #ddccdc;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #ffffff; }
.nav-links .btn { padding: 9px 20px; font-size: 0.9rem; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

body.has-nav { padding-top: var(--nav-h); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--pri) 0%, var(--pri-light) 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(193,47,41,0.08);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(61,139,89,0.07);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.3em;
}
.hero p {
  font-size: 1.2rem;
  color: #d4c4d3;
  max-width: 650px;
  margin: 0 auto 2em;
  line-height: 1.7;
}
.hero .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 0.3em; }
.section-header p {
  color: var(--text-med);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* === SERVICES GRID === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--rad-lg);
  padding: 36px 28px;
  box-shadow: var(--shad);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shad-lg); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--bg-alt);
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.service-card h3 { margin-bottom: 0.4em; }
.service-card p { color: var(--text-med); font-size: 0.95rem; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text p {
  color: var(--text-med);
  margin-bottom: 1.2em;
  font-size: 1.02rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--rad-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shad);
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--acc);
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-med);
  margin-top: 4px;
}

/* === FEATURES === */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acc);
  flex-shrink: 0;
  margin-top: 6px;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.3em; }
.feature-item p { color: var(--text-med); font-size: 0.94rem; }

/* === CTA === */
.cta {
  background: var(--pri);
  color: #ffffff;
  text-align: center;
  padding: 70px 0;
}
.cta h2 { color: #ffffff; font-size: 2rem; margin-bottom: 0.3em; }
.cta p {
  color: #d4c4d3;
  max-width: 550px;
  margin: 0 auto 1.8em;
  font-size: 1.05rem;
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h3 { margin-bottom: 0.6em; }
.contact-info p { color: var(--text-med); margin-bottom: 1.5em; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rad);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; color: var(--pri); font-size: 0.95rem; }
.contact-item-text span { color: var(--text-med); font-size: 0.92rem; }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--rad-lg);
  padding: 32px;
  box-shadow: var(--shad);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--rad);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.25s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--acc);
  box-shadow: 0 0 0 3px rgba(193,47,41,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: var(--rad);
  margin-top: 14px;
  font-weight: 500;
  font-size: 0.92rem;
}
.form-msg.success { display: block; background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-msg.error { display: block; background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === FOOTER === */
.site-footer {
  background: var(--pri);
  color: #d4c4d3;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 1em;
  font-size: 1.1rem;
}
.footer-col p { font-size: 0.93rem; line-height: 1.65; }
.footer-col a { color: #d4c4d3; font-size: 0.93rem; }
.footer-col a:hover { color: #ffffff; }
.footer-col li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 860px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    background: var(--pri);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 50px; }
  .section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .btn-row { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
}
