:root {
  --bg: #f0eee9;
  --text: #1c1f1d;
  --muted: #2f3933;
  --card: #ffffff;
  --accent: #e05a2b;
  --accent-dark: #a63d1a;
  --line: #ddd6c8;
  --deep: #222824;
  --soft: #e7e1d5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

header {
  background: rgba(235, 230, 220, 0.94);
  border-bottom: 1px solid rgba(31,37,34,0.14);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 18px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  color: #26302b;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent-dark); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid #1877f2;
  color: #1877f2;
  background: transparent;
  transition: 0.2s ease;
}
.fb-link svg { width: 16px; height: 16px; fill: currentColor; }
.fb-link:hover { background: #1877f2; color: white; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 900;
  border: 1px solid var(--accent);
  transition: 0.2s ease;
  box-shadow: 5px 5px 0 rgba(31,37,34,0.18);
  cursor: pointer;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.42);
  box-shadow: none;
}
.btn.light {
  background: white;
  color: var(--deep);
  border-color: white;
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: white;
  border-bottom: 6px solid var(--accent);
}
.hero { padding: 96px 20px 88px; }
.page-hero { padding: 72px 20px 66px; }
.hero::before, .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(28,31,29,0.90), rgba(28,31,29,0.58));
  z-index: 1;
}
.hero img.bg, .page-hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
}
h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 900px;
  letter-spacing: -0.04em;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, #f0c08f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero h1 { font-size: clamp(38px, 5vw, 58px); }
.lead {
  font-size: 18px;
  color: #eee4d6;
  max-width: 780px;
  margin-bottom: 30px;
  display: grid;
  gap: 10px;
}
.lead span { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.lead span::before { content: ""; width: 10px; height: 10px; background: var(--accent); display: inline-block; flex: 0 0 auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.home-main { min-height: calc(100vh - 72px); }
.home-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 120px 20px 110px;
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.26);
  border-radius: 999px;
  color: #f0c08f;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.18);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
}
.section.compact { padding-top: 44px; }
.section-title {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.12; margin: 0 0 14px; }
.muted { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 6px 6px 0 rgba(31,37,34,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 6px; height: 100%; background: var(--accent); }
.card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 rgba(31,37,34,0.12); }
.priority-card { border-color: rgba(224,90,43,0.45); box-shadow: 8px 8px 0 rgba(224,90,43,0.16); }
.icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--deep);
  display: flex; align-items: center; justify-content: center; color: #f0c08f;
  font-weight: 900; margin: 0 auto 18px; font-size: 16px; box-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.priority-card .icon { background: var(--accent); color: white; }
.card h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.3; letter-spacing: -0.01em; }
.card p.muted, .service-list { color: #29342e; font-weight: 600; }
.service-list { text-align: left; padding-left: 18px; margin: 14px 0 18px; }
.service-list li { margin: 6px 0; }
.card .btn { margin-top: 10px; box-shadow: 4px 4px 0 rgba(31,37,34,0.12); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}
.info-box {
  background: var(--deep);
  color: white;
  border-radius: 18px;
  padding: 34px;
  box-shadow: 8px 8px 0 rgba(31,37,34,0.16);
}
.info-box p { color: #d6dde3; }

.video-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.video-link {
  min-height: 220px;
  border-radius: 14px;
  padding: 22px;
  position: relative;
  color: white;
  border: 1px solid rgba(31,37,34,0.16);
  box-shadow: 7px 7px 0 rgba(31,37,34,0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-link::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.76)); z-index: 1; }
.video-link * { position: relative; z-index: 2; }
.video-link:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 rgba(31,37,34,0.14); }
.video-link span { color: #f0c08f; font-weight: 900; letter-spacing: 0.08em; }
.video-link strong { font-size: 20px; line-height: 1.2; }

.contact {
  background: repeating-linear-gradient(135deg, rgba(197,107,44,0.16) 0 2px, transparent 2px 16px), var(--deep);
  color: white;
  border-radius: 18px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 10px 10px 0 rgba(31,37,34,0.18);
}
.contact p { color: #d6dde3; }
.contact-details { display: grid; gap: 10px; margin-top: 20px; color: #eef6fa; }
.contact-form { display: grid; gap: 12px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08); color: white; font: inherit; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.65); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; border: 0; }

footer { border-top: 1px solid var(--line); background: var(--soft); padding: 28px 20px; color: #4e574f; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }

@media (max-width: 980px) {
  .nav { align-items: flex-start; flex-wrap: wrap; }
  .nav-links { order: 3; width: 100%; flex-wrap: wrap; }
  .grid, .grid.two { grid-template-columns: repeat(2, 1fr); }
  .split, .contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid, .grid.two { grid-template-columns: 1fr; }
  .hero { padding: 64px 20px; }
  .page-hero { padding: 54px 20px; }
  .section { padding: 52px 20px; }
  .contact { padding: 28px; }
  .nav-right { flex-wrap: wrap; justify-content: flex-end; }
}
