:root {
  --bg: #FAF7F2;
  --surface: #F2EDE3;
  --text: #2B2928;
  --muted: #6B6560;
  --accent: #C9674A;
  --border: #E5DFD6;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1.25rem; margin-top: 3.5rem; }
h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 540px; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: 0.75; }
ul, ol { margin-bottom: 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* Layout */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.container--wide {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 3.5rem;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text);
  text-decoration: none;
}
.wordmark span { color: var(--accent); }
.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  margin-left: 1.5rem;
}
.nav a:hover { color: var(--text); }
.nav a.active { color: var(--accent); }

/* Hero */
.hero { padding: 1rem 0 0.5rem; }

/* Steps */
.steps ol { list-style: none; counter-reset: step; }
.steps li {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  counter-increment: step;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.3;
}
.steps h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}
.steps p { color: var(--muted); font-size: 0.98rem; margin-bottom: 0; }

/* CTA box */
.cta {
  margin: 4rem 0 2rem;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.cta h2 { margin-top: 0; }
.cta p { color: var(--muted); margin-bottom: 1.25rem; }

/* Buttons */
.button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.button:hover { opacity: 0.88; color: white; }
.button--outline {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s;
}
.button--outline:hover { background: var(--accent); color: white; opacity: 1; }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.card h3 { font-family: 'Fraunces', Georgia, serif; }

/* Pricing table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.pricing-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.pricing-card .price-unit {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pricing-card .ideal {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-card li {
  font-size: 0.92rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before {
  content: "\2713";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-weight: 600;
}
.pricing-card li.not-included {
  color: var(--muted);
  opacity: 0.5;
}
.pricing-card li.not-included::before {
  content: "\2014";
  color: var(--muted);
}
.pricing-card .button { width: 100%; text-align: center; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.compare-table th {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
  background: var(--surface);
}
.compare-table td:first-child {
  font-weight: 500;
}
.compare-table .check { color: var(--accent); font-weight: 600; }
.compare-table .dash { color: var(--muted); opacity: 0.4; }

/* Project cards (portfolio) */
.project {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.project:last-child { border-bottom: none; }
.project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.project-meta span {
  background: var(--surface);
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}
.project-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 6px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 1.5rem 0;
}

/* FAQ */
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonial {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.testimonial:last-child { border-bottom: none; }
.testimonial blockquote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.value-card h3 { font-family: 'Fraunces', Georgia, serif; }
.value-card p { color: var(--muted); font-size: 0.92rem; }

/* Extras table */
.extras-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.extras-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.extras-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--accent);
}

/* Blog */
.blog-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.blog-content h2 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
.blog-content h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 2rem;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
.blog-content th, .blog-content td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.blog-content th {
  font-weight: 500;
  background: var(--surface);
}

/* Contact form */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--text);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(201, 103, 74, 0.15);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 0;
  margin-top: 4rem;
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-grid strong { color: var(--text); }
.footer-nav { margin-top: 1rem; }
.footer-nav a { margin-right: 1.25rem; }
.mention { font-size: 0.82rem; margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.82rem; }
  .compare-table th, .compare-table td { padding: 0.5rem; }
}
@media (max-width: 600px) {
  .container, .container--wide { padding: 1.5rem 1.25rem 3rem; }
  header { margin-bottom: 2.5rem; }
  .nav a { margin-left: 1rem; font-size: 0.9rem; }
  .cta { padding: 2rem 1.25rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons a { width: 100%; text-align: center; }
}
