/* Eleven Design shared design system */
:root {
  --charcoal: #2E2E2C;
  --charcoal-deep: #262624;
  --charcoal-soft: #3A3A37;
  --sage: #C7CDB8;
  --sage-strong: #B4BCA0;
  --taupe: #6E6553;
  --paper: #F4F3EF;
  --paper-soft: #ECEAE3;
  --ink: #2E2E2C;
  --text-on-dark: #E9E8E2;
  --text-muted-dark: #B9B8AF;
  --text-muted-light: #6B6A63;
  --serif: Georgia, "Times New Roman", "Liberation Serif", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1180px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-on-dark);
  background: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.lead { font-size: 1.08rem; max-width: 46rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal-deep);
  border-bottom: 1px solid rgba(199, 205, 184, 0.16);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand img { height: 44px; width: auto; }
.site-nav { display: none; margin-left: auto; }
.site-nav a {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  color: var(--text-muted-dark);
  padding: 0.4rem 0.65rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--sage); }
.site-nav a.active { color: var(--sage); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.site-nav + .header-actions { margin-left: 0; }

.lang-toggle {
  display: flex;
  border: 1px solid rgba(199, 205, 184, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-toggle button {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: transparent;
  color: var(--text-muted-dark);
  border: 0;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}
.lang-toggle button.active { background: var(--sage); color: var(--charcoal); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--sage);
  color: var(--sage);
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.btn:hover { background: var(--sage); color: var(--charcoal); }
.btn-solid { background: var(--sage); color: var(--charcoal); }
.btn-solid:hover { background: var(--sage-strong); }
.header-call { white-space: nowrap; padding: 0.5rem 1rem; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(199, 205, 184, 0.35);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span { display: block; height: 1px; background: var(--sage); }

.mobile-nav {
  display: none;
  background: var(--charcoal-deep);
  border-bottom: 1px solid rgba(199, 205, 184, 0.16);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.85rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  border-top: 1px solid rgba(199, 205, 184, 0.08);
}
.mobile-nav a.active, .mobile-nav a:hover { color: var(--sage); }

/* Hero */
.hero { position: relative; }
.hero img { width: 100%; height: auto; }
.hero-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
}
.hero-copy h1 { max-width: 24ch; }
.hero-copy .lead { margin-top: 1.1rem; color: var(--text-muted-dark); }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-phone { font-family: var(--serif); font-size: 1.15rem; color: var(--sage); }

/* Sections */
.section { padding: 4.5rem 0; }
.section-light { background: var(--paper); color: var(--ink); }
.section-light .kicker { color: var(--taupe); }
.section-light .lead, .section-light .muted { color: var(--text-muted-light); }
.section-deep { background: var(--charcoal-deep); }
.muted { color: var(--text-muted-dark); }
.section-head { margin-bottom: 2.5rem; max-width: 46rem; }
.section-head p { margin-top: 0.9rem; }

/* Grids and cards */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

.card { background: transparent; }
.card figcaption, .card .caption { margin-top: 0.7rem; }
.card h3 { margin-bottom: 0.3rem; }
.card p { font-size: 0.92rem; }
.section-light .card p { color: var(--text-muted-light); }
.card p.muted { color: var(--text-muted-dark); }

.feature-list { list-style: none; display: grid; gap: 1.1rem; }
.feature-list li { padding-left: 1.4rem; position: relative; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.65rem;
  height: 1px;
  background: var(--taupe);
}
.feature-list h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.feature-list p { font-size: 0.92rem; }

/* Stats strip */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.stat .num { font-family: var(--serif); font-size: 2rem; color: var(--sage); line-height: 1.1; }
.section-light .stat .num { color: var(--taupe); }
.stat .lbl { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.3rem; }

/* Process steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1.6rem; }
.steps li { counter-increment: step; padding-left: 3.2rem; position: relative; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--taupe);
}
.steps h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.steps p { font-size: 0.92rem; }

/* Testimonials */
.quote { border-left: 1px solid var(--taupe); padding-left: 1.3rem; }
.quote .starrow { color: var(--taupe); letter-spacing: 0.2em; font-size: 0.8rem; margin-bottom: 0.6rem; }
.quote blockquote { font-family: var(--serif); font-size: 1.02rem; font-style: italic; }
.quote .who { margin-top: 0.7rem; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Pricing */
.price-cards { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.price-card { border: 1px solid rgba(110, 101, 83, 0.45); padding: 1.8rem 1.6rem; border-radius: var(--radius); }
.section-light .price-card { border-color: rgba(110, 101, 83, 0.35); background: #FFFFFF; }
.price-card .amount { font-family: var(--serif); font-size: 1.7rem; margin: 0.7rem 0 0.4rem; }
.price-card p { font-size: 0.9rem; }
.price-note { margin-top: 1.6rem; font-size: 0.88rem; max-width: 40rem; }

/* Contact */
.contact-phone {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--sage);
  display: inline-block;
  margin: 1rem 0;
}
.section-light .contact-phone { color: var(--taupe); }

/* CTA band */
.cta-band { text-align: center; padding: 4.5rem 1.25rem; background: var(--charcoal-deep); }
.cta-band h2 { max-width: 26ch; margin: 0 auto 1rem; }
.cta-band .muted { max-width: 40rem; margin: 0 auto 1.8rem; }

/* Footer */
.site-footer { background: var(--charcoal-deep); border-top: 1px solid rgba(199, 205, 184, 0.16); padding: 3rem 0 2.2rem; }
.footer-inner { display: flex; flex-direction: column; gap: 1.6rem; }
.site-footer img { height: 40px; width: auto; }
.footer-meta { font-size: 0.85rem; color: var(--text-muted-dark); display: grid; gap: 0.35rem; }
.footer-meta a { color: var(--sage); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-fine { font-size: 0.75rem; color: var(--text-muted-dark); }

/* Dev site flavor: sleeker, all-dark, sans headings */
.site-dev h1, .site-dev h2, .site-dev h3, .site-dev .stat .num,
.site-dev .quote blockquote, .site-dev .price-card .amount,
.site-dev .contact-phone, .site-dev .hero-phone, .site-dev .steps li::before {
  font-family: var(--sans);
}
.site-dev h1, .site-dev h2 { font-weight: 300; letter-spacing: 0.02em; }
.site-dev .section-light { background: var(--charcoal-soft); color: var(--text-on-dark); }
.site-dev .section-light .kicker { color: var(--sage); }
.site-dev .section-light .lead, .site-dev .section-light .muted,
.site-dev .section-light .card p { color: var(--text-muted-dark); }
.site-dev .section-light .stat .num { color: var(--sage); }
.site-dev .section-light .price-card { background: transparent; border-color: rgba(199, 205, 184, 0.25); }
.site-dev .section-light .contact-phone { color: var(--sage); }
.site-dev .steps li::before { color: var(--sage); font-size: 0.85rem; letter-spacing: 0.1em; top: 0.35rem; }
.site-dev .quote { border-left-color: var(--sage); }

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .price-cards { grid-template-columns: repeat(3, 1fr); }
  .hero-copy { padding: 4rem 1.25rem 5rem; }
}

@media (min-width: 980px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .brand img { height: 50px; }
}
