:root {
  --brand-dark: #3d2415;
  --brand-mid: #a87656;
  --brand-light: #d9b99a;
  --bg: #faf7f4;
  --bg-alt: #f1e9e1;
  --text: #2b1c12;
  --text-soft: #6b584a;
  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; }

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

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--bg-alt);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav .logo img {
  height: 44px;
  width: auto;
}

.nav .logo span {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav ul a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav ul a:hover { color: var(--brand-mid); }

.nav-cta {
  background: var(--brand-dark);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-toggle { display: none; }

/* Hero */
.hero {
  padding: 90px 24px 80px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  text-align: center;
}

.hero img.hero-logo {
  height: 130px;
  width: auto;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0 0 18px;
  color: var(--brand-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 34px;
}

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--brand-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-dark);
  border: 1.5px solid var(--brand-dark);
}

.btn:hover { transform: translateY(-2px); }

/* Section basics */
section { padding: 80px 24px; }

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-mid);
  font-weight: 700;
  font-size: 0.82rem;
}

.section-heading h2 {
  font-size: 2rem;
  color: var(--brand-dark);
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--text-soft);
}

/* Services */
.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--bg-alt);
  border-radius: var(--radius);
  padding: 34px 28px;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.service-card h3 {
  color: var(--brand-dark);
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-soft);
  font-size: 0.97rem;
  margin: 0 0 14px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

.service-card li { margin-bottom: 6px; }

.service-details {
  margin-top: 16px;
  border-top: 1px solid var(--bg-alt);
  padding-top: 14px;
}

.service-details summary {
  cursor: pointer;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.92rem;
  list-style: none;
}
.service-details summary::-webkit-details-marker { display: none; }
.service-details summary::after {
  content: " +";
}
.service-details[open] summary::after {
  content: " –";
}

.service-details-body {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.service-details-body h4 {
  color: var(--brand-dark);
  font-size: 0.95rem;
  margin: 14px 0 6px;
}
.service-details-body h4:first-child { margin-top: 0; }
.service-details-body p { margin: 0 0 10px; }
.service-details-body ul,
.service-details-body ol {
  margin: 0 0 10px;
  padding-left: 18px;
}
.service-details-body li { margin-bottom: 4px; }

.hero-chat-hint {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* About */
.about {
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about h2 {
  color: var(--brand-dark);
  font-size: 1.9rem;
  margin-top: 0;
}

.about p { color: var(--text-soft); }

.about-facts {
  display: grid;
  gap: 18px;
}

.fact {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid #e6d9cb;
}

.fact strong {
  display: block;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

/* Contact */
.contact { background: #fff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-info { display: grid; gap: 22px; align-content: start; }

.contact-info .item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info .item .label {
  font-weight: 700;
  color: var(--brand-dark);
  display: block;
  margin-bottom: 2px;
}

.contact-info .item a {
  text-decoration: none;
  color: var(--text-soft);
}

.contact-info .item a:hover { color: var(--brand-mid); }

form.contact-form {
  display: grid;
  gap: 16px;
}

form.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
  display: block;
  margin-bottom: 6px;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e0d2c3;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
}

form.contact-form textarea { min-height: 130px; resize: vertical; }

form.contact-form .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-soft);
}

form.contact-form .consent input { width: auto; margin-top: 3px; }

form.contact-form button {
  justify-self: start;
  border: none;
  cursor: pointer;
}

/* Footer */
footer.site-footer {
  background: var(--brand-dark);
  color: #f1e6da;
  padding: 50px 24px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  max-width: var(--max-width);
  margin: 0 auto 30px;
}

footer.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 14px;
  letter-spacing: 0.03em;
}

footer.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

footer.site-footer a {
  text-decoration: none;
  color: #d9c6b3;
  font-size: 0.9rem;
}

footer.site-footer a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #c8b6a3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* Legal pages */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 24px 100px;
}

.legal h1 {
  color: var(--brand-dark);
  font-size: 2rem;
}

.legal h2 {
  color: var(--brand-dark);
  font-size: 1.3rem;
  margin-top: 40px;
}

.legal p, .legal li { color: var(--text-soft); }

/* Responsive */
@media (max-width: 860px) {
  .nav ul:not(.mobile-open) { display: none; }
  .menu-toggle {
    display: inline-flex;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--brand-dark);
    cursor: pointer;
  }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}
