:root {
  --maroon: #851111;
  --maroon-dark: #5e0c0c;
  --maroon-light: #a33;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --gray-light: #f4f4f4;
  --white: #ffffff;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--black);
  line-height: 1.6;
  background: var(--white);
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo { height: 56px; width: auto; }

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

.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--black);
  transition: color 0.2s;
}

.main-nav a:hover { color: var(--maroon); }

.nav-cta {
  background: var(--maroon);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
}

.nav-cta:hover { background: var(--maroon-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--black);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #fafafa 0%, #f0e9e9 100%);
  padding: 100px 0 90px;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--maroon);
  font-size: 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 58px);
  max-width: 820px;
  margin: 0 auto 20px;
}

.accent { color: var(--maroon); }

.hero-sub {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 16px;
  color: var(--black);
  margin-bottom: 22px;
}

.hero-desc {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--gray);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: var(--black);
  color: var(--black);
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

.btn-wide { width: 100%; }

.hero-note {
  font-style: italic;
  color: var(--gray);
  font-size: 14px;
}

/* Section generic */
.section-title {
  font-size: clamp(28px, 4vw, 38px);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 50px;
  font-size: 16px;
}

.services { padding: 90px 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--gray-light);
  border: 1px solid #eaeaea;
  border-left: 4px solid var(--maroon);
  border-radius: 8px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.service-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 28px;
  color: var(--maroon);
  opacity: 0.5;
}

.service-card h3 { margin: 10px 0 10px; font-size: 20px; }
.service-card p { color: var(--gray); font-size: 15px; }

/* About */
.about {
  background: var(--black);
  color: var(--white);
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .section-title { text-align: left; color: var(--white); }
.about-text p { color: #ccc; margin-bottom: 16px; font-size: 16px; }
.about-text strong { color: var(--white); }

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 24px;
  border-top: 3px solid var(--maroon);
}

.founder-card h4 { font-size: 18px; margin-bottom: 6px; }
.founder-card p { color: #bbb; font-size: 14px; }

/* Process */
.process { padding: 90px 0; background: var(--gray-light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step { text-align: center; }

.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}

.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--gray); font-size: 14px; }

/* CTA / Contact */
.cta-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 90px 0;
}

.cta-inner { text-align: center; }

.cta-banner h2 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 12px;
}

.cta-banner p { color: #f3d9d9; margin-bottom: 36px; }

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 14px;
  background: var(--white);
  color: var(--black);
}

.contact-form textarea { resize: vertical; }

.contact-form .btn-primary {
  background: var(--black);
  margin-top: 6px;
}

.contact-form .btn-primary:hover { background: #000; }

.form-status {
  margin-top: 14px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

.cta-direct {
  margin-top: 30px;
  color: #f3d9d9;
}

.cta-direct a { color: var(--white); text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--black);
  color: #999;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-logo { height: 40px; filter: brightness(0) invert(1); opacity: 0.85; }

.footer-email a { color: var(--maroon-light); }

/* Responsive */
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-text .section-title { text-align: center; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 18px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .service-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
