:root {
  --hyt-sage: #2D5A4A;
  --hyt-plum: #5C3D6E;
  --hyt-cream: #F7F5F2;
  --hyt-ink: #202024;
  --hyt-muted: #4c4f58;
  --hyt-border: #d7d1ca;
  --hyt-white: #ffffff;
  --hyt-max: 1240px;
  --hyt-radius-sm: 6px;
  --hyt-radius-md: 10px;
  --hyt-radius-pill: 999px;
  --hyt-shadow: 0 10px 28px rgba(45, 90, 74, 0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  color: var(--hyt-ink);
  background: var(--hyt-cream);
}

h1, h2, h3, h4 {
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", serif;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--hyt-sage);
}

p {
  margin: 0 0 1.1rem;
}

a {
  color: var(--hyt-plum);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--hyt-sage);
}

:focus-visible {
  outline: 3px solid var(--hyt-plum);
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--hyt-radius-md);
}

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

.hyt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 242, 0.96);
  border-bottom: 1px solid var(--hyt-border);
  backdrop-filter: blur(6px);
}

.hyt-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hyt-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--hyt-sage);
  font-weight: 700;
}

.hyt-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: var(--hyt-radius-sm);
  display: grid;
  place-items: center;
  background: var(--hyt-sage);
  color: var(--hyt-cream);
  font-family: "Palatino Linotype", Palatino, serif;
}

.hyt-nav__toggle {
  display: none;
  border: 1px solid var(--hyt-border);
  border-radius: var(--hyt-radius-sm);
  background: var(--hyt-white);
  padding: 8px;
}

.hyt-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--hyt-sage);
  margin: 4px 0;
}

.hyt-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hyt-nav__link {
  text-decoration: none;
  color: var(--hyt-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hyt-nav__link.is-active,
.hyt-nav__link:hover {
  color: var(--hyt-sage);
}

.hyt-nav__link--cta {
  padding: 10px 16px;
  border-radius: var(--hyt-radius-pill);
  color: var(--hyt-cream);
  background: var(--hyt-plum);
}

.hyt-nav__link--cta:hover {
  color: var(--hyt-cream);
  background: #4b3258;
}

.hyt-hero, .hyt-page-hero {
  padding: 72px 0 52px;
}

.hyt-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 30px;
  align-items: center;
}

.hyt-hero__stats {
  list-style: none;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--hyt-border);
  background: var(--hyt-white);
  border-radius: var(--hyt-radius-md);
  box-shadow: var(--hyt-shadow);
}

.hyt-hero__stats li {
  margin-bottom: 16px;
}

.hyt-hero__stats li:last-child {
  margin-bottom: 0;
}

.hyt-hero__stats strong {
  display: block;
  color: var(--hyt-sage);
  font-size: 2rem;
  font-family: "Palatino Linotype", Palatino, serif;
}

.hyt-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid var(--hyt-border);
  border-radius: var(--hyt-radius-pill);
  color: var(--hyt-plum);
  background: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.hyt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hyt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 11px 20px;
  font-weight: 700;
  border-radius: var(--hyt-radius-pill);
  cursor: pointer;
}

.hyt-btn--primary {
  background: var(--hyt-sage);
  color: var(--hyt-cream);
}

.hyt-btn--primary:hover {
  color: var(--hyt-cream);
  background: #21463a;
}

.hyt-btn--ghost {
  border-color: var(--hyt-plum);
  color: var(--hyt-plum);
  background: transparent;
}

.hyt-btn--ghost:hover {
  color: var(--hyt-cream);
  background: var(--hyt-plum);
}

.hyt-section {
  padding: 56px 0;
}

.hyt-section--alt {
  background: #efeae4;
}

.hyt-section--cta {
  background: linear-gradient(120deg, #2d5a4a 0%, #5c3d6e 100%);
  color: var(--hyt-cream);
}

.hyt-section--cta h2,
.hyt-section--cta a,
.hyt-section--cta p {
  color: var(--hyt-cream);
}

.hyt-cards,
.hyt-service-grid,
.hyt-team,
.hyt-values,
.hyt-pricing-cards,
.hyt-footer__grid {
  display: grid;
  gap: 18px;
}

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

.hyt-team,
.hyt-values,
.hyt-pricing-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hyt-team article:nth-child(4) {
  grid-column: span 3;
}

.hyt-card,
.hyt-service-card,
.hyt-price,
.hyt-team article,
.hyt-values article,
.hyt-filter,
.hyt-form,
.hyt-faq__item,
.hyt-hero__stats,
.hyt-privacy-block {
  background: var(--hyt-white);
  border: 1px solid var(--hyt-border);
  border-radius: var(--hyt-radius-md);
  padding: 20px;
}

.hyt-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.hyt-contact-list {
  padding-left: 18px;
}

.hyt-form {
  display: grid;
  gap: 10px;
}

.hyt-form input,
.hyt-form textarea,
.hyt-form select,
.hyt-filter select {
  width: 100%;
  border: 1px solid #b8b1a9;
  border-radius: var(--hyt-radius-sm);
  padding: 10px;
  font: inherit;
  background: #fff;
}

.hyt-form__status {
  margin: 0;
  font-weight: 600;
  color: var(--hyt-sage);
}

.hyt-faq__item button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 700;
  color: var(--hyt-sage);
  cursor: pointer;
  padding: 0;
}

.hyt-faq__item div {
  margin-top: 10px;
}

.hyt-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  background: #fff;
}

.hyt-table th,
.hyt-table td {
  border: 1px solid var(--hyt-border);
  padding: 10px;
  vertical-align: top;
}

.hyt-table th {
  background: #ece7e1;
  text-align: left;
}

.hyt-price__amount {
  font-size: 2rem;
  color: var(--hyt-plum);
  font-family: "Palatino Linotype", Palatino, serif;
}

.hyt-footer {
  background: #1f2b27;
  color: #e8e3dc;
  margin-top: 40px;
}

.hyt-footer a {
  color: #f5d8ff;
}

.hyt-footer__grid {
  grid-template-columns: 1fr 1fr 1.2fr;
  padding: 40px 24px;
}

.hyt-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hyt-footer li {
  margin: 0 0 8px;
}

.hyt-footer address {
  font-style: normal;
  line-height: 1.7;
}

.hyt-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 14px 24px 18px;
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .hyt-hero__grid,
  .hyt-two-col,
  .hyt-footer__grid,
  .hyt-pricing-cards,
  .hyt-team,
  .hyt-values {
    grid-template-columns: 1fr;
  }

  .hyt-team article:nth-child(4) {
    grid-column: span 1;
  }

  .hyt-cards,
  .hyt-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hyt-nav__toggle {
    display: inline-block;
  }

  .hyt-nav__list {
    display: none;
    width: 100%;
    padding-top: 12px;
  }

  .hyt-nav__list.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hyt-header__inner {
    flex-wrap: wrap;
  }
}

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

  .hyt-container {
    padding: 0 16px;
  }

  .hyt-hero,
  .hyt-page-hero,
  .hyt-section {
    padding: 42px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
