:root {
  --primary: #24485f;
  --dark: #17384f;
  --accent: #c49a5a;
  --cream: #f7f1e8;
  --text: #172833;
  --muted: #667782;
  --line: rgba(23, 56, 79, 0.16);
  --shadow: 0 18px 50px rgba(23, 56, 79, 0.12);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fbf8f2;
  line-height: 1.65;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1160px, 92vw);
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
}
.nav {
  display: flex;
  gap: 20px;
}
.nav a {
  font-weight: 700;
  color: #385260;
}
.nav a.active {
  color: var(--accent);
}
.header-cta,
.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}
.header-cta,
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 25px rgba(196, 154, 90, 0.25);
}
.btn-secondary,
.btn-light {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
}
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: 10px 13px;
}
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 45, 63, 0.92), rgba(18, 45, 63, 0.66)),
    url("../img/hero.png") center/cover no-repeat;
}
.hero {
  padding: 110px 0 96px;
}
.page-hero {
  padding: 88px 0 76px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: center;
}
.hero h1,
.page-hero h1,
h1,
h2 {
  font-family: "EB Garamond", Georgia, serif;
  line-height: 1.05;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 12px 0 20px;
}
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  margin: 12px 0;
}
.hero p,
.page-hero p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.84);
  max-width: 760px;
}
.kicker {
  display: inline-flex;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 900;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-meta span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  padding: 8px 12px;
}
.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 24px;
  margin-bottom: 18px;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.stat {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
}
.stat strong {
  display: block;
}
.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.77);
}
.section,
.section-sm {
  padding: 82px 0;
}
.section-sm {
  padding: 58px 0;
}
.section-head {
  max-width: 820px;
  margin-bottom: 30px;
}
.section-head h2,
h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  margin: 10px 0 14px;
}
p {
  color: var(--muted);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.card,
.surface,
.panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card {
  padding: 28px;
}
.panel {
  padding: 32px;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--cream);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 16px;
}
.image-card {
  overflow: hidden;
  padding: 0;
}
.image-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.image-card .card-body {
  padding: 24px;
}
.list-clean {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.list-clean li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.list-clean li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.steps li {
  counter-increment: step;
  padding: 20px 0 20px 74px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.steps li:before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 18px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item strong {
  display: block;
  color: var(--dark);
}
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 15px 16px;
  font: inherit;
  margin-bottom: 14px;
}
textarea {
  min-height: 150px;
}
.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: white;
}
.map-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.site-footer {
  background: var(--dark);
  color: white;
  padding: 64px 0 28px;
}
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1fr;
  gap: 30px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li {
  margin: 9px 0;
}
.subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
}
.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 40;
}
.cookie-inner {
  max-width: 920px;
  margin: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.95rem;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-banner.is-hidden {
  display: none;
}
@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 80px 0;
  }
  .cookie-inner {
    display: block;
  }
  .cookie-actions {
    margin-top: 12px;
  }
  .mobile-open .nav {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
}
