:root {
  --page-bg: #f3f3f1;
  --card: #ffffff;
  --text: #171a17;
  --muted: #666a65;
  --line: #dcded8;
  --olive-dark: #152016;
  --olive: #243022;
  --olive-light: #a5a36a;
  --accent: #aaa96e;
  --shadow: 0 12px 34px rgba(30, 38, 28, 0.09);
  --radius: 7px;
  --container: 1180px;
  --font-sans: "Segoe UI", Aptos, Arial, sans-serif;
  --font-heading: Bahnschrift, "Segoe UI Semibold", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.95), transparent 30%),
    linear-gradient(180deg, #f7f7f5 0%, var(--page-bg) 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 98px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  text-decoration: none;
}

.brand-emblem {
  width: 62px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand-copy span {
  color: #5e635d;
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.main-nav a {
  position: relative;
  color: #20231f;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--olive-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 405px;
  display: grid;
  place-items: start center;
  overflow: hidden;
  color: white;
  background-image: url("../images/hero-desktop.webp");
  background-size: cover;
  background-position: center 44%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,16,13,0.38) 0%, rgba(10,16,13,0.28) 52%, rgba(10,16,13,0.53) 100%),
    linear-gradient(90deg, rgba(16,22,18,0.20), rgba(16,22,18,0.04) 50%, rgba(16,22,18,0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 128px;
  text-align: center;
  text-shadow: 0 3px 16px rgba(0,0,0,0.38);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 750;
  line-height: 1.03;
  letter-spacing: 0.12px;
}

.hero p {
  margin: 19px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 650;
  letter-spacing: 0.25px;
}

.contacts-section {
  position: relative;
  z-index: 5;
  margin-top: -70px;
}

.contact-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  overflow: hidden;
  border: 1px solid rgba(38, 48, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow);
}

.contact-item {
  min-height: 152px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 34px 30px;
}

.contact-item + .contact-item {
  border-left: 1px solid var(--line);
}

.round-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0e1b10;
  background: linear-gradient(145deg, #b8b67c, #8f925e);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.round-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item h2 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 650;
}

.contact-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-value {
  display: inline-block;
  color: #101310;
  text-decoration: none;
  font-size: 17px;
  font-weight: 650;
}

.contact-value:hover,
.contact-value:focus-visible {
  text-decoration: underline;
}

.address-text {
  color: #262a25 !important;
  line-height: 1.5;
}

.content-section {
  padding: 28px 0 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
  gap: 26px;
  align-items: stretch;
}

.panel,
.appeal-shell {
  border: 1px solid rgba(31, 40, 29, 0.10);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 8px 28px rgba(31, 39, 29, 0.04);
}

.panel {
  padding: 31px 30px 28px;
}

.section-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.title-accent {
  display: block;
  width: 54px;
  height: 2px;
  margin-top: 13px;
  background: var(--accent);
}

.schedule-list {
  margin: 29px 0 27px;
}

.schedule-list > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.schedule-list > div:first-child {
  border-top: 1px solid var(--line);
}

.schedule-list dt {
  font-weight: 650;
}

.schedule-list dd {
  margin: 0;
  color: #30352f;
  text-align: right;
}

.primary-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 4px;
  color: white;
  background: linear-gradient(180deg, #233124, #142016);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.12px;
  transition: transform 150ms ease, filter 150ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.12);
}

.accordion {
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 2px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
}

.accordion-trigger svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.accordion-content {
  padding: 0 44px 18px 2px;
  color: #555b54;
  font-size: 15px;
}

.accordion-content a {
  color: #263923;
  font-weight: 650;
}

.appeal-section {
  padding: 0 0 34px;
}

.appeal-shell {
  padding: 29px 24px 24px;
}

.appeal-shell > .section-title,
.appeal-shell > .title-accent {
  margin-left: 5px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.step-card {
  min-height: 156px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 24px 20px;
  border: 1px solid #d7d9d4;
  border-radius: 5px;
  background: #fff;
}

.step-card .round-icon {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.step-card h3 {
  margin: 2px 0 10px;
  font-size: 16px;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  color: #4f544e;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 47px 0 50px;
  color: rgba(255,255,255,0.88);
  background:
    radial-gradient(circle at 20% 10%, rgba(157,155,101,0.16), transparent 30%),
    linear-gradient(135deg, #263225, #101a12 72%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: linear-gradient(115deg, transparent 0 52%, rgba(255,255,255,0.08) 52% 53%, transparent 53% 100%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 70px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand img {
  width: 74px;
  height: 88px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-family: var(--font-heading);
  font-size: 18px;
}

.footer-brand span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.footer-column h2 {
  margin: 3px 0 17px;
  color: white;
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.25;
}

.footer-column a,
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 11px 0;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: white;
}

.footer-column svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 1px;
  fill: none;
  stroke: #aaa96e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-column p {
  margin: 7px 0;
  color: rgba(255,255,255,0.79);
  font-size: 14px;
}

:focus-visible {
  outline: 3px solid rgba(169,168,105,0.65);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .main-nav {
    gap: 28px;
  }

  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }

  .contact-item:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .content-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 0;
  }

  .footer-grid {
    gap: 36px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    position: sticky;
    top: 0;
    height: 70px;
  }

  .brand {
    gap: 10px;
  }

  .brand-emblem {
    width: 38px;
    height: 46px;
  }

  .brand-copy strong {
    max-width: 220px;
    font-size: 14px;
  }

  .brand-copy span {
    font-size: 11px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 55;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 10px 20px 22px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.99);
    box-shadow: 0 18px 35px rgba(0,0,0,0.13);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .hero {
    min-height: 530px;
    background-image: url("../images/hero-mobile.webp");
    background-position: center 38%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(9,14,11,0.54) 0%, rgba(9,14,11,0.26) 46%, rgba(9,14,11,0.68) 100%),
      linear-gradient(90deg, rgba(16,22,18,0.20), transparent 50%, rgba(16,22,18,0.18));
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero h1 {
    max-width: 620px;
    margin-inline: auto;
    font-size: clamp(36px, 10.5vw, 52px);
    line-height: 1.06;
  }

  .hero p {
    max-width: 520px;
    margin: 17px auto 0;
    font-size: 16px;
    line-height: 1.38;
  }

  .contacts-section {
    margin-top: -60px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-item,
  .contact-item:nth-child(3) {
    min-height: 0;
    grid-column: auto;
    padding: 25px 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .contact-item:first-child {
    border-top: 0;
  }

  .content-section {
    padding-top: 20px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .panel,
  .appeal-shell {
    padding: 26px 21px;
  }

  .section-title {
    font-size: 22px;
  }

  .schedule-list {
    margin-top: 24px;
  }

  .accordion-trigger {
    min-height: 65px;
    font-size: 15px;
  }

  .appeal-section {
    padding-bottom: 24px;
  }

  .steps-grid {
    gap: 12px;
  }

  .step-card {
    padding: 20px 17px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand img {
    width: 66px;
    height: 70px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-copy strong {
    max-width: 190px;
    font-size: 12px;
  }

  .brand-copy span {
    font-size: 10px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .contact-item {
    gap: 14px;
  }

  .round-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .round-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-value {
    font-size: 16px;
  }

  .schedule-list > div {
    gap: 12px;
  }

  .primary-button {
    width: 100%;
    font-size: 14px;
  }

  .step-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}


.data-routing .step-card p a {
  color: #263923;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.brand-emblem,
.footer-brand img {
  filter: drop-shadow(0 4px 10px rgba(21, 32, 22, 0.16));
}






/* Final hero layout without header */
html {
  scroll-padding-top: 0;
}

.site-header {
  display: none;
}

.hero {
  min-height: 540px;
  place-items: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 52px 0 116px;
  text-align: center;
}

.hero-emblem {
  width: clamp(112px, 12vw, 162px);
  height: auto;
  max-height: 188px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.38));
}

.hero h1 {
  font-size: clamp(38px, 4.4vw, 60px);
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 650;
  letter-spacing: 0.1px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero-content {
    padding: 42px 0 108px;
  }

  .hero-emblem {
    width: 118px;
    max-height: 150px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 36px 0 98px;
  }
}
