﻿:root {
  --bg: #f5f2ea;
  --surface: #ffffff;
  --surface-2: #f8f4eb;
  --text: #1d2433;
  --muted: #5c6470;
  --accent: #c08135;
  --accent-dark: #8f5520;
  --accent-soft: #f7edd9;
  --border: #e5dfd1;
  --shadow: 0 18px 40px rgba(29, 36, 51, 0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg), #fefcf7);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(29, 36, 51, 0.04);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.8rem; font-weight: 700; font-size: 1.1rem; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
.brand span { letter-spacing: 0.01em; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1rem; color: var(--muted); }
.nav-links a { padding: 0.35rem 0.1rem; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--accent-dark); }

.hero {
  padding: 4.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(192, 129, 53, 0.16), transparent 34%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; position: relative; }
.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.2; margin: 0 0 0.7rem; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 700px; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 620px; margin-bottom: 1.2rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 10px 20px rgba(192, 129, 53, 0.25); }
.btn-secondary { border: 1px solid var(--border); background: white; }
.card, .panel, .contact-card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card h3 { color: var(--accent-dark); font-size: 1.05rem; }
.card ul, .panel ul { padding-left: 1rem; color: var(--muted); }
.card li + li, .panel li + li { margin-top: 0.55rem; }
.section { padding: 1rem 0 3rem; }
.content-grid, .section-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.panel p, .panel li, .contact-card p, .contact-card li { color: var(--muted); }
.cta { padding: 0 0 4rem; }
.cta-box {
  background: linear-gradient(135deg, #23324b, #3b4d68);
  color: white;
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.cta-box .btn-secondary { background: white; color: var(--text); }
form { display: grid; gap: 0.8rem; }
label { font-weight: 600; color: var(--text); }
input, textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font: inherit;
}
button { border: 0; cursor: pointer; }
.form-status {
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  background: #eef8f1;
  color: #2f6b3d;
  border: 1px solid #ccebd2;
}
.form-status[hidden] { display: none !important; }
footer { padding: 1.2rem 0 2.4rem; color: var(--muted); font-size: 0.95rem; }
.site-footer { border-top: 1px solid var(--border); margin-top: 1rem; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0 0.8rem;
}
.footer-profile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}
.footer-profile h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  color: var(--text);
}
.footer-profile p {
  margin: 0;
  color: var(--muted);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem 0;
}
.footer-contact a {
  color: var(--accent-dark);
  font-weight: 600;
}
.footer-copy {
  padding-bottom: 1rem;
  text-align: center;
}

@media (max-width: 840px) {
  .hero-grid, .content-grid, .section-grid { grid-template-columns: 1fr; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 620px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 0.7rem 1rem; }
}
