:root {
  --white: #ffffff;
  --sand: #fff8f0;
  --orange: #f28c28;
  --orange-light: #ffb347;
  --orange-soft: #fdeada;
  --ink: #2b2d42;
  --ink-light: #4a4e69;
  --text: #333333;
  --footer: #1a1a1a;
  --line: #f0e6da;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 22px 46px rgba(43, 45, 66, 0.14);
  --head: "Playfair Display", Georgia, serif;
  --body: "Nunito", system-ui, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.logo span.fox {
  font-family: var(--body);
  font-size: 26px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  position: relative;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  padding: 4px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.menu a:hover::after,
.menu a.is-on::after {
  width: 100%;
}

.header-cta {
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(242, 140, 40, 0.3);
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: var(--orange-soft);
  cursor: pointer;
}

.burger i {
  display: block;
  width: 20px;
  height: 2.5px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

.burger.open i:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open i:nth-child(2) {
  opacity: 0;
}

.burger.open i:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.burger i {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.page-hero {
  padding: 56px 0 40px;
  background: var(--sand);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 700;
}

.crumbs a {
  color: var(--orange);
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #b5651d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(32px, 5vw, 48px);
}

.page-hero p {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--ink-light);
}

.mark {
  padding: 0 6px;
  background-image: linear-gradient(
    transparent 70%,
    rgba(242, 140, 40, 0.4) 70%,
    rgba(242, 140, 40, 0.4) 95%,
    transparent 95%
  );
  border-radius: 4px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  padding: 56px 0 96px;
  align-items: start;
}

.article a:not(.btn) {
  color: var(--orange);
  font-weight: 700;
}

.article picture {
  display: block;
  width: 96px;
  margin-bottom: 8px;
}

.article h2 {
  margin: 36px 0 14px;
  font-size: 28px;
}

.article h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article p,
.article li {
  color: #44475a;
}

.article p {
  margin: 0 0 16px;
}

.article ul,
.article ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article li {
  margin-bottom: 8px;
}

.faq {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
}

.faq details {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq p {
  margin: 10px 0 0;
}

.cta-box {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
}

.cta-box h2 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 26px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 800;
}

.btn-main {
  background: var(--orange);
  color: #fff;
}

.cta-box .btn {
  color: #fff;
}

.side {
  position: sticky;
  top: 96px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--sand);
  border: 1px solid var(--line);
}

.side h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.side a:not(.btn) {
  display: block;
  padding: 8px 0;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.side a:not(.btn):hover,
.side a.is-on {
  color: var(--orange);
}

.side .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 18px;
  padding: 14px 22px;
  color: #fff;
  border-bottom: 0;
  text-align: center;
}

.side .btn:hover {
  color: #fff;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card img {
  width: 72px;
  height: 72px;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.card p {
  flex: 1;
  margin: 0 0 16px;
  color: #5f6480;
  font-size: 15px;
}

.card .more {
  font-weight: 800;
  color: var(--orange);
}

.news {
  display: grid;
  gap: 18px;
}

.news article {
  padding: 22px 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.news h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.news p {
  margin: 0 0 10px;
  color: #5f6480;
}

.section {
  padding: 0 0 72px;
}

.section h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 36px);
}

footer {
  padding: 66px 0 26px;
  background: var(--footer);
  color: rgba(255, 255, 255, 0.68);
}

.f-cols {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 40px;
}

footer .logo {
  color: #fff;
  margin-bottom: 14px;
}

footer h4 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 19px;
}

.f-links {
  display: grid;
  gap: 10px;
}

footer a:hover {
  color: var(--orange);
}

.f-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .side {
    position: static;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .burger {
    display: block;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 20px;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: var(--shadow-hover);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 14px 0;
    border-bottom: 1px solid #f2f2f2;
  }

  .header-cta {
    display: none;
  }

  .grid-cards,
  .f-cols {
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 115;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #eee;
  }

  .mobile-bar a {
    padding: 14px 8px;
    border-radius: 8px;
    text-align: center;
    font-weight: 800;
    font-size: 15px;
  }

  .mobile-bar .call {
    background: var(--orange-soft);
    color: #b5651d;
  }

  .mobile-bar .sign {
    background: var(--orange);
    color: #fff;
  }

  footer {
    padding-bottom: 96px;
  }
}

@media print {
  .site-header,
  .mobile-bar,
  .side,
  footer,
  .burger,
  .cta-box .btn {
    display: none !important;
  }

  .layout {
    display: block;
  }

  .article {
    max-width: 100%;
  }

  .page-hero {
    padding-bottom: 12px;
  }

  a[href]::after {
    content: none;
  }
}
