:root {
  --accent: #e08a12;
  --accent-hover: #f19a1e;
  --accent-deep: #a85f04;
  --accent-soft: #fdf2e0;
  --ink: #14161a;
  --ink-2: #1b1e24;
  --ink-3: #262b33;
  --white: #ffffff;
  --tint: #f3f5f8;
  --line: #e1e5eb;
  --line-dark: #333944;
  --text: #14161a;
  --muted: #5a6270;
  --muted-dark: #a9b3c2;
  --r-s: 3px;
  --r-m: 8px;
  --r-l: 12px;
  --sec-y: 88px;
  --wrap: 1240px;
  --nav-h: 72px;
  --bar-height: 38px;
  --scroll-offset: 110px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 14px 32px rgba(20, 22, 26, 0.07);
  --shadow-soft: 0 5px 16px rgba(20, 22, 26, 0.045);
  --shadow-lift: 0 16px 36px rgba(20, 22, 26, 0.1);
}

* { box-sizing: border-box; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1 0 auto; }

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

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

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.021em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

p { margin: 0 0 1.05rem; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.section { padding: var(--sec-y) 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--ink); color: #e5e9ef; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(1.7rem, 2.75vw, 2.4rem); }
.section-head p {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
}
.section--dark .section-head p { color: var(--muted-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  min-width: 186px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-s);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex: 0 0 auto; }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-3); }

.btn-line {
  background: var(--white);
  color: var(--ink);
  border-color: #cdd4dd;
}
.btn-line:hover { border-color: var(--ink); }

.btn-onphoto {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-onphoto:hover { background: rgba(255, 255, 255, 0.18); border-color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.check { display: grid; gap: 10px; }
.check li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-deep);
  font-size: 0.8125rem;
  font-weight: 700;
}
.section--dark .check li::before,
.wide-card .check li::before { color: var(--accent); }

.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible {
  opacity: 1;
  transform: none;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 130;
  background: var(--ink);
  color: var(--muted-dark);
  transition: transform .3s var(--ease);
}
.topbar.hidden { transform: translateY(-100%); }
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 38px;
  font-size: 0.8125rem;
}
.topbar-slogan {
  color: #cfd6e0;
  font-weight: 500;
  white-space: nowrap;
}
.topbar-place {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.topbar-place { white-space: nowrap; }
.topbar-tel {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
}
.topbar-tel svg { width: 14px; height: 14px; color: var(--accent); }
.topbar-tel:hover { color: var(--accent); }

.nav {
  position: fixed;
  top: var(--bar-height);
  left: 0;
  right: 0;
  z-index: 120;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: top .3s var(--ease), box-shadow .25s var(--ease);
}
.nav.bar-hidden { top: 0; }
.nav.scrolled { box-shadow: 0 8px 28px rgba(20, 22, 26, 0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: var(--nav-h);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav-links > li.mobile-menu-header,
.nav-links > li.mobile-menu-cta,
.nav-links > li.mobile-menu-foot { display: none; }

.nav-links > li:not(.mobile-menu-cta) > a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #454c58;
  transition: color .2s var(--ease);
}
.nav-links > li:not(.mobile-menu-cta) > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links > li:not(.mobile-menu-cta) > a:hover { color: var(--ink); }
.nav-links > li:not(.mobile-menu-cta) > a:hover::after { width: 100%; }

.nav-cta {
  flex: 0 0 auto;
  min-height: 42px;
  min-width: 0;
  padding: 0 20px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: var(--r-s);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: transform .22s var(--ease), opacity .14s var(--ease) .18s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transition: opacity .06s linear; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 12, 16, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility 0s linear .3s;
}
.mobile-overlay.active { opacity: 1; visibility: visible; transition-delay: 0s; }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  padding-top: calc(var(--scroll-offset) + 64px);
  padding-bottom: 62px;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 17, 0.66) 0%, rgba(11, 13, 17, 0.28) 30%, rgba(11, 13, 17, 0.5) 66%, rgba(11, 13, 17, 0.92) 100%),
    linear-gradient(96deg, rgba(11, 13, 17, 0.8) 0%, rgba(11, 13, 17, 0.34) 54%, rgba(11, 13, 17, 0) 92%);
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 {
  max-width: 19ch;
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  color: var(--white);
  box-shadow: inset 0 -0.09em 0 var(--accent);
}
.hero-lead {
  max-width: 54ch;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: #dde3ea;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.hero-proof li {
  padding: 2px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  min-width: 0;
}
.hero-proof li:first-child { border-left: 0; padding-left: 0; }
.hero-proof strong {
  display: block;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 0.9063rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--white);
}
.hero-proof span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #aeb7c4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 64px;
  align-items: center;
}
.split-copy h2 { font-size: clamp(1.7rem, 2.75vw, 2.4rem); }
.split-copy > p {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--muted);
}
.split-copy .check { margin-top: 30px; }

.frame { position: relative; }
.frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-l);
  box-shadow: var(--shadow);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.facts li { min-width: 0; }
.facts strong {
  display: block;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.facts span {
  display: block;
  margin-top: 5px;
  font-size: 0.8125rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--muted);
}


.scards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.scard {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.scard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.scard-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.scard-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 17, 0) 34%, rgba(11, 13, 17, 0.5) 62%, rgba(11, 13, 17, 0.88) 100%);
}
.scard-media h3 {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 16px;
  font-size: 1.125rem;
  color: var(--white);
}
.scard-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 20px;
}
.scard-body > p { margin: 0; font-size: 0.9063rem; line-height: 1.6; color: var(--muted); }
.scard-body .check { margin-top: 14px; margin-bottom: 18px; }
.scard-body .check li { font-size: 0.875rem; }
.scard-body .btn {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin-top: auto;
}

.wide-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  align-items: stretch;
  margin-top: 26px;
  background: var(--ink);
  border-radius: var(--r-m);
  overflow: hidden;
  color: #dfe4ec;
}
.wide-card-copy { padding: 38px; }
.wide-card-copy h3 { font-size: 1.375rem; color: var(--white); }
.wide-card-copy > p {
  margin-top: 12px;
  font-size: 0.9375rem;
  color: var(--muted-dark);
  max-width: 54ch;
}
.wide-card .check {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin-top: 20px;
}
.wide-card .check li { color: #dfe4ec; }
.wide-card-media { position: relative; min-height: 300px; }
.wide-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 23px;
  right: 23px;
  height: 1px;
  background: var(--line);
}
.step { position: relative; min-width: 0; }
.step-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
}
.step-node svg { width: 19px; height: 19px; }
.step h3 {
  margin-top: 22px;
  font-size: 1.0625rem;
}
.step p {
  margin: 8px 0 0;
  font-size: 0.9063rem;
  line-height: 1.6;
  color: var(--muted);
}

.cert { position: relative; overflow: hidden; }
.cert-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  opacity: 0.88;
}
.cert-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(15, 17, 21, 0.97) 0%, rgba(15, 17, 21, 0.92) 40%, rgba(15, 17, 21, 0.55) 78%, rgba(15, 17, 21, 0.32) 100%),
    linear-gradient(180deg, rgba(15, 17, 21, 0.6) 0%, rgba(15, 17, 21, 0.2) 44%, rgba(15, 17, 21, 0.82) 100%);
}
.cert-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.cert-mark {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-l);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}
.cert-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.badge-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 74px;
  padding: 13px;
  background: var(--white);
  border-radius: var(--r-m);
  transition: transform .2s var(--ease);
}
.badge-chip:hover { transform: translateY(-2px); }
.badge-chip img { max-width: 76%; max-height: 48px; width: auto; object-fit: contain; }
.cert-copy h2 { font-size: clamp(1.7rem, 2.75vw, 2.4rem); }
.cert-copy > p { margin-top: 18px; font-size: 0.9688rem; color: var(--muted-dark); }
.cert-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 32px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
}
.cert-grid li { color: #e5e9ef; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery-item {
  position: relative;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-m);
  overflow: hidden;
  cursor: pointer;
  background: var(--tint);
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: 1 / 2.07; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 13, 17, 0);
  transition: background .3s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(11, 13, 17, 0.18); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(9, 11, 14, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility 0s linear .28s;
}
.lightbox.active { opacity: 1; visibility: visible; transition-delay: 0s; }
.lightbox img { max-width: 100%; max-height: 88vh; width: auto; border-radius: var(--r-m); }
.lightbox-close, .lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; }
.lightbox-next { right: 26px; top: 50%; }
.lightbox-close svg, .lightbox-nav svg { width: 20px; height: 20px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }

.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.quote {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--shadow-soft);
}
.quote-mark {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 0.7;
  color: var(--accent);
  margin-bottom: 14px;
}
.quote blockquote {
  margin: 0;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.quote-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.quote-foot img {
  flex: 0 0 auto;
  width: auto;
  max-width: 92px;
  max-height: 38px;
  object-fit: contain;
}
.quote .quote-cite {
  margin: 0;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}
.quote .quote-cite strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 600;
}

.cta-band { position: relative; overflow: hidden; padding: 86px 0; background: var(--ink); }
.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 85%;
}
.cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(96deg, rgba(11, 13, 17, 0.92) 0%, rgba(11, 13, 17, 0.68) 48%, rgba(11, 13, 17, 0.24) 100%);
}
.cta-inner { position: relative; z-index: 1; max-width: 660px; }
.cta-inner h2 { font-size: clamp(1.7rem, 2.7vw, 2.25rem); color: var(--white); }
.cta-inner p { margin-top: 16px; font-size: 0.9688rem; color: #dbe1e9; }

.social-embed { min-height: 320px; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 52px;
  align-items: start;
}
.contact-rows { display: grid; margin-top: 32px; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:first-child { border-top: 1px solid var(--line); }
.contact-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: var(--r-s);
  background: var(--tint);
  color: var(--muted);
}
.contact-ico svg { width: 17px; height: 17px; }
.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  display: block;
  margin-top: 2px;
  font-size: 0.9688rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
}
a.contact-row:hover .contact-value { color: var(--accent-deep); }

.contact-direct { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 26px; }
.direct-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
}
.direct-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.direct-head img {
  width: 54px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: 50% 16%;
  border-radius: var(--r-s);
}
.direct-body { min-width: 0; }
.direct-name {
  display: block;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.direct-role {
  display: block;
  margin-top: 2px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.direct-card a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
  font-weight: 500;
  color: var(--muted);
  word-break: break-word;
}
.direct-card a svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--muted); }
.direct-card a:hover { color: var(--accent-deep); }

.map-frame {
  margin-top: 26px;
  border-radius: var(--r-m);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-frame iframe { display: block; width: 100%; height: 260px; border: 0; }

.form-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.375rem; }
.form-card > p { margin-top: 8px; font-size: 0.9375rem; color: var(--muted); }
#contact-form { max-width: 100%; min-width: 0; margin-top: 22px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; min-width: 0; }
.form-group--wide { grid-column: 1 / -1; }
.form-group label {
  margin-bottom: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-width: 0;
  padding: 12px 13px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d2d9e2;
  border-radius: var(--r-s);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 118px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #7b8492; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(224, 138, 18, 0.18);
}
#contact-form .btn { width: 100%; margin-top: 22px; }
.ms-recaptcha-notice { text-align: center; }

.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  border-top: 1px solid var(--accent);
  padding-top: 64px;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding-bottom: 48px;
}
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { margin-top: 18px; font-size: 0.9063rem; max-width: 34ch; }
.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 11px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-s);
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--white);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.footer-ig svg { width: 17px; height: 17px; }
.footer-ig:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; font-size: 0.9063rem; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8125rem;
}
.footer-bottom .footer-right { margin-left: auto; }
.footer-bottom a:hover { color: var(--accent); }

.legal { padding: calc(var(--scroll-offset) + 64px) 0 var(--sec-y); }
.legal-inner { max-width: 780px; }
.legal h1 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
.legal h2 { margin-top: 38px; font-size: 1.1875rem; }
.legal p, .legal li { font-size: 0.9688rem; color: var(--muted); }
.legal p { margin-top: 16px; }
.legal .check { margin-top: 18px; }
.legal .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  margin-bottom: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}
.legal .back-link:hover { color: var(--ink); }

button:focus-visible, a:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, .gallery-item:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .nav-links { gap: 22px; }
  .split, .cert-inner { gap: 48px; }
  .scards { gap: 20px; }
  .wide-card-copy { padding: 36px; }
}

@media (max-width: 1080px) {
  :root { --sec-y: 72px; --nav-h: 66px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .brand img { height: 40px; }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0 0 40px;
    background: var(--ink);
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .34s var(--ease), visibility 0s linear .34s;
  }
  .nav-links.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
  .nav-links > li.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--nav-h);
    padding: 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links > li.mobile-menu-header > img { height: 38px; width: auto; flex: 0 0 auto; }
  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--white);
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
  }
  .mobile-menu-close svg { width: 18px; height: 18px; }

  .nav-links > li:not(.mobile-menu-header):not(.mobile-menu-foot):not(.mobile-menu-cta) { padding: 0 24px; }
  .nav-links > li:not(.mobile-menu-header):not(.mobile-menu-foot):not(.mobile-menu-cta) > a {
    display: block;
    padding: 15px 0;
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 1.3125rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
  }
  .nav-links > li.mobile-menu-cta { display: block; padding: 22px 24px 0; }
  .nav-links > li.mobile-menu-cta .btn { width: 100%; }
  .nav-links > li.mobile-menu-foot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links > li.mobile-menu-foot > a,
  .nav-links > li.mobile-menu-foot > span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--muted-dark);
  }

  .split, .contact-grid, .cert-inner { grid-template-columns: minmax(0, 1fr); gap: 46px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px 32px; }
  .steps::before { display: none; }
  .frame { max-width: 620px; }
  .cert-side { max-width: 460px; }
  .scards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wide-card { grid-template-columns: minmax(0, 1fr); }
  .wide-card-media { min-height: 260px; order: -1; }
  .quote-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; }
  .hero-proof { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 0; }
  .hero-proof li:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 760px) {
  :root { --sec-y: 56px; --nav-h: 62px; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .topbar-slogan, .topbar-place { display: none; }
  .topbar-inner { justify-content: center; min-height: 40px; }
  .topbar-tel { margin-left: 0; }

  .hero {
    min-height: auto;
    padding-top: calc(var(--scroll-offset) + 40px);
    padding-bottom: 36px;
  }
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(11, 13, 17, 0.74) 0%, rgba(11, 13, 17, 0.56) 30%, rgba(11, 13, 17, 0.72) 64%, rgba(11, 13, 17, 0.94) 100%);
  }
  .hero-bg { object-position: 50% 42%; }
  .hero h1 { font-size: clamp(1.75rem, 7.2vw, 2.25rem); max-width: none; }
  .hero-lead { font-size: 0.9375rem; margin-top: 16px; }
  .hero-proof { margin-top: 32px; padding-top: 20px; gap: 18px 0; }
  .hero-proof li { padding: 0 14px; }
  .hero-proof strong { font-size: 0.9375rem; }
  .hero-proof span { font-size: 0.75rem; }

  .btn-row .btn { width: 100%; }
  .section-head { margin-bottom: 32px; }
  .split, .contact-grid, .cert-inner { gap: 38px; }
  .frame { padding: 12px 0 0 12px; }
  .facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .facts strong { font-size: 1.125rem; }
  .facts span { font-size: 0.75rem; }


  .scards { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .wide-card-copy { padding: 26px 22px; }
  .wide-card .check { grid-template-columns: minmax(0, 1fr); }
  .wide-card-media { min-height: 210px; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .steps::before {
    display: block;
    top: 27px;
    bottom: 27px;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 30px;
  }
  .step:last-child { padding-bottom: 0; }
  .step-node { grid-row: span 2; }
  .step h3 { margin-top: 12px; }
  .step p { grid-column: 2; margin-top: 6px; }
  .cert-grid { grid-template-columns: minmax(0, 1fr); }
  .badge-chip { width: calc(50% - 7px); height: 70px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .lightbox { padding: 16px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
  .quote { padding: 24px; }
  .cta-band { padding: 68px 0; }
  .contact-direct { grid-template-columns: minmax(0, 1fr); }
  .form-card { padding: 22px 18px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 34px; padding-bottom: 42px; }
  .footer-bottom .footer-right { margin-left: 0; }
}

@media (max-width: 420px) {
  .badge-chip { width: 100%; }
}

@media (min-width: 1081px) {
  .form-card { position: sticky; top: calc(var(--scroll-offset) + 26px); }
}

@media (hover: none) {
  .btn-primary:hover, .btn-dark:hover, .badge-chip:hover, .scard:hover { transform: none; }
  .scard:hover { box-shadow: var(--shadow-soft); }
  .gallery-item:hover img { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in, .fade-in-left, .fade-in-right { opacity: 1; transform: none; transition: none; }
  .btn, .scard, .badge-chip, .nav, .topbar, .gallery-item img { transition: none; }
}
