:root {
  --ink: #152029;
  --muted: #5d6b78;
  --line: #d9e1e8;
  --paper: #eef2f6;
  --white: #fff;
  --steel: #1f3a52;
  --steel-deep: #132636;
  --accent: #e07a1f;
  --accent-dark: #c46312;
  --max: 1120px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Outfit", "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(21, 32, 41, 0.08);
  backdrop-filter: blur(12px);
}
.site-top__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}
.logo img { width: 160px; height: auto; }
.nav {
  display: flex;
  gap: 0.15rem;
  margin-left: auto;
}
.nav a {
  font-size: 0.88rem;
  font-weight: 650;
  padding: 0.55rem 0.8rem;
  color: var(--muted);
  transition: color 0.15s;
}
.nav a:hover,
.nav a.is-active { color: var(--steel); }
.site-top__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.top-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--steel-deep);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  place-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}
.btn--lg { padding: 0.95rem 1.35rem; font-size: 0.95rem; }
.btn--block { width: 100%; }
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
.btn--line {
  color: var(--steel-deep);
  background: transparent;
  border: 1px solid rgba(31, 58, 82, 0.28);
}
.btn--line:hover {
  border-color: var(--steel);
  background: rgba(31, 58, 82, 0.05);
  transform: translateY(-1px);
}

/* Hero — light, compact, with window photos */
.hero {
  position: relative;
  min-height: 0;
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 65% 90% at 92% 10%, rgba(224, 122, 31, 0.1), transparent 50%),
    linear-gradient(165deg, #e4edf5 0%, #d7e4ef 48%, #cfdce8 100%);
  border-bottom: 1px solid #c5d3e0;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 1.25rem 2rem;
  align-items: center;
  padding: 1.75rem 0 1.85rem;
  max-width: none;
  animation: rise 0.7s cubic-bezier(.2,.8,.2,1) both;
}
.hero__copy {
  max-width: 28rem;
}
.hero__brand {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--steel-deep);
  text-shadow: none;
}
.hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.hero h1::after {
  content: "";
  display: block;
  width: 2.6rem;
  height: 3px;
  margin-top: 0.65rem;
  background: var(--accent);
}
.hero__lead {
  margin: 0 0 1rem;
  max-width: 34ch;
  font-size: 0.98rem;
  color: var(--muted);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}
.hero__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero__photos {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
}
.hero__shot {
  margin: 0;
  overflow: hidden;
  background: #c8d5e2;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(21, 40, 58, 0.12);
}
.hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero__shot:hover img {
  transform: scale(1.04);
}
.hero__shot--main {
  grid-row: 1 / span 2;
  min-height: 220px;
  border-radius: 26px;
}
.hero__shot--side,
.hero__shot--side2 {
  min-height: 104px;
  border-radius: 18px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  letter-spacing: -0.02em;
}

.channels { padding-top: 2.5rem; }
.channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.channel {
  display: grid;
  gap: 0.25rem;
  padding: 1.15rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.15s, transform 0.15s;
}
.channel:hover {
  border-color: rgba(224, 122, 31, 0.45);
  transform: translateY(-2px);
}
.channel--static { cursor: default; }
.channel--static:hover { transform: none; border-color: var(--line); }
.channel__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.channel strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.channel__hint {
  font-size: 0.82rem;
  color: var(--muted);
}

.messengers {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
}
.messengers__label {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}
.messengers__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.messengers__row a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 650;
  transition: border-color 0.15s, background 0.15s;
}
.messengers__row a:hover {
  border-color: rgba(31, 58, 82, 0.35);
  background: #fff;
}
.messengers__row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Lead form */
.lead-block {
  background:
    linear-gradient(180deg, rgba(31, 58, 82, 0.04), transparent 40%),
    #fff;
  border-block: 1px solid var(--line);
}
.lead-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.lead-copy p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 36ch;
  font-size: 1.05rem;
}
.lead-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.lead-points li {
  position: relative;
  padding-left: 1.15rem;
  font-weight: 650;
}
.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

.lead-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
}
.lead-form label {
  display: grid;
  gap: 0.35rem;
}
.lead-form label span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(224, 122, 31, 0.65);
}
.form-note {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  color: #1c6b45;
}
.form-note.is-error { color: #a33a2c; }
.form-legal {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.map-lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
  max-width: 48ch;
}
.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #dfe6ec;
  min-height: 360px;
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* Footer */
.site-foot {
  background: var(--steel-deep);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0 1.25rem;
}
.site-foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
.site-foot strong {
  display: block;
  margin-bottom: 0.65rem;
  color: #fff;
  font-family: var(--display);
}
.site-foot a {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  opacity: 0.85;
}
.site-foot a:hover { opacity: 1; }
.site-foot p {
  margin: 0.75rem 0 0;
  max-width: 32ch;
  font-size: 0.92rem;
  opacity: 0.75;
}
.logo--foot img {
  width: 140px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-foot__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  opacity: 0.7;
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 0.75rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: grid; }
  .top-phone { display: none; }
  .channels__grid { grid-template-columns: 1fr 1fr; }
  .lead-grid,
  .site-foot__grid { grid-template-columns: 1fr; }
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 1.35rem 0 1.5rem;
    gap: 1.1rem;
  }
  .hero__photos {
    min-height: 180px;
    order: -1;
  }
  .hero__shot--main { min-height: 180px; }
}

@media (max-width: 560px) {
  .channels__grid { grid-template-columns: 1fr; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .hero__photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .hero__shot--main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__shot img { transition: none; }
  html { scroll-behavior: auto; }
}


/* Lead form now uses shared .lf-card */
.lead-block { padding-top: 0.5rem; }
.lead-grid, .lead-form, .lead-copy { /* legacy unused */ }
