* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  background: var(--deep);
}
a { color: inherit; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  animation: ken 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 23, 20, 0.4), rgba(16, 23, 20, 0.18) 38%, rgba(16, 23, 20, 0.9)),
    linear-gradient(90deg, rgba(16, 23, 20, 0.62), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0 0 2.4rem;
  animation: up 0.9s ease both;
}
.brand-label {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.obj-title {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.45rem, 3.8vw, 2.45rem);
  line-height: 1.12;
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
  max-width: 18em;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 0 0 0.55rem;
  letter-spacing: -0.03em;
}
.brand em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.kicker {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.02rem;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font: inherit;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn-ghost { border-color: var(--ghost-border); }
.btn:hover { filter: brightness(1.06); }

.nav {
  position: absolute;
  top: 1.2rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.nav-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--ink); }
.nav-phone {
  color: var(--ink) !important;
  font-weight: 600;
}

.hero-form {
  margin-top: 1.15rem;
  max-width: 34rem;
}
.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.55rem;
}
.hero-form input[type="text"],
.hero-form input[type="tel"],
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--input-bg);
  padding: 0.75rem 0.85rem;
  outline: none;
  color: var(--ink);
  font: inherit;
}
.hero-form input:focus,
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.hero-phone {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-phone a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.form-checks {
  display: grid;
  gap: 0.45rem;
  margin: 0.7rem 0 0.2rem;
}
.form-check {
  display: grid;
  grid-template-columns: 1.125rem minmax(0, 1fr);
  column-gap: 0.65rem;
  align-items: start;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--muted);
  cursor: pointer;
  margin: 0;
}
.form-check input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.1rem 0 0;
  padding: 0;
  border: 1.5px solid var(--check-border);
  border-radius: 4px;
  background: var(--input-bg);
  display: grid;
  place-content: center;
  cursor: pointer;
}
.form-check input[type="checkbox"]::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  transform: scale(0);
  background: var(--accent-ink);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.form-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-check input[type="checkbox"]:checked::before { transform: scale(1); }
.form-check a { color: var(--accent); }
.form-success {
  display: none;
  margin-top: 0.8rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
}
.hero-form.is-sent .form-fields,
.lead-form.is-sent .form-fields { display: none; }
.hero-form.is-sent .form-success,
.lead-form.is-sent .form-success { display: block; }

.facts {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  padding: 2.4rem 0 1rem;
  animation: up 1s 0.1s ease both;
}
.panel {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.price {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.35rem;
  color: var(--accent);
}
.addr {
  margin: 0;
  color: var(--muted);
}
.meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0;
}
.meta div {
  border-top: 1px solid var(--line);
  padding-top: 0.5rem;
}
.meta dt {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta dd {
  margin: 0.15rem 0 0;
  font-weight: 600;
  font-size: 1.02rem;
}
.block {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto 2.6rem;
}
.block h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 1rem;
}
.desc {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 46rem;
  margin: 0;
}
.desc-grid {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}
.desc-grid--with-plan {
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
}
.desc-grid--with-plan .desc { max-width: none; }
.desc-plan { margin: 0; }
.desc-plan .shot {
  margin: 0;
  background: var(--cover-bg);
  border-radius: 14px;
  overflow: hidden;
}
.desc-plan img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.shots {
  columns: 3 220px;
  column-gap: 0.75rem;
}
.shot {
  break-inside: avoid;
  margin: 0 0 0.75rem;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  animation: up 0.65s ease forwards;
  animation-delay: calc(var(--i) * 35ms);
}
.shot.is-hidden,
[hidden] { display: none !important; }
.shot img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.shot:hover img { transform: scale(1.03); }
.gallery-actions { margin-top: 0.4rem; }
.lead-block {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.lead-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 36rem;
}
.lead-form { max-width: 28rem; }
.form-row {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.8rem;
}
.form-row label {
  font-size: 0.8rem;
  color: var(--muted);
}
.lead-form textarea {
  min-height: 88px;
  resize: vertical;
}
.footer {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.footer a {
  color: var(--accent);
  text-decoration: none;
}
.empty { color: var(--muted); }

@keyframes ken {
  from { transform: scale(1.06); }
  to { transform: scale(1.12) translate(-1.2%, -1%); }
}
@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 800px) {
  .facts { grid-template-columns: 1fr; }
  .desc-grid--with-plan { grid-template-columns: 1fr; }
  .shots { columns: 2 140px; }
  .hero-form-row { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .shot,
  .hero-content,
  .facts {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
