/* Blattwerk Studio — Editorial Plant Styling */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sage: #4a6741;
  --sage-dark: #3a5233;
  --sage-light: #6b8a62;
  --cream: #f5f2eb;
  --cream-dark: #e8e4db;
  --text: #2c2c28;
  --text-muted: #5a5a54;
  --accent-line: 4px solid var(--sage);
  --max-width: 1100px;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: "Segoe UI", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--sage-dark);
}

/* Header */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span {
  font-style: italic;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  font-family: var(--sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--text-muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sage);
}

/* Hero — centered */
.hero {
  text-align: center;
  padding: 4.5rem 1.5rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: normal;
  color: var(--sage);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.875rem 1.75rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--sage);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sage-dark);
  color: var(--cream);
}

.btn-secondary {
  background: transparent;
  color: var(--sage);
  border: 1px solid var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--cream);
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  margin: 0 auto;
}

/* Left-accent cards */
.card {
  background: #fff;
  border-left: var(--accent-line);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card-grid .card {
  margin-bottom: 0;
}

/* Price tags */
.price {
  font-family: var(--sans);
  font-size: 1.5rem;
  color: var(--sage);
  margin: 0.5rem 0;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Page header (inner pages) */
.page-header {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 3rem 0 4rem;
}

.page-content h2 {
  font-size: 1.375rem;
  font-weight: normal;
  color: var(--sage);
  margin: 2rem 0 1rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--sage-dark);
  margin: 1.5rem 0 0.75rem;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--text-muted);
}

.page-content ul li,
.page-content ol li {
  margin-bottom: 0.5rem;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Contact form */
.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--serif);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--cream-dark);
  background: #fff;
  color: var(--text);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--sage-light);
  outline-offset: 1px;
}

/* FAQ accordion-style */
.faq-item {
  border-left: var(--accent-line);
  background: #fff;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Process steps */
.process-steps {
  counter-reset: step;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.process-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--sage);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  border-left: var(--accent-line);
  background: #fff;
  overflow: hidden;
}

.portfolio-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sage-light) 100%);
  opacity: 0.4;
}

.portfolio-item .portfolio-body {
  padding: 1.5rem 2rem;
}

.portfolio-item h3 {
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.portfolio-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* Areas list */
.areas-list {
  columns: 2;
  column-gap: 2rem;
}

.areas-list li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .areas-list {
    columns: 1;
  }
}

/* Sitemap */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.sitemap-col h3 {
  font-size: 1rem;
  font-weight: normal;
  color: var(--sage);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--sans);
  font-size: 0.8125rem;
}

.sitemap-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-col li {
  margin-bottom: 0.5rem;
}

.sitemap-col a {
  font-family: var(--sans);
  font-size: 0.9375rem;
  text-decoration: none;
}

.sitemap-col a:hover {
  text-decoration: underline;
}

/* Legal pages */
.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content .updated {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: var(--sage);
  color: var(--cream);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.footer-col p,
.footer-col li {
  font-size: 0.9375rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.375rem;
}

.footer-col a {
  color: var(--cream);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 242, 235, 0.2);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-size: 0.8125rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--cream);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.highlight-box {
  background: #fff;
  border-left: var(--accent-line);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0;
  color: var(--text-muted);
}
