@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Unbounded:wght@600;700&display=swap");

:root {
  color: #13241c;
  background: #f2f0e9;
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-synthesis: none;
  --ink: #13241c;
  --green: #153c2d;
  --green-soft: #dfe9dc;
  --lime: #c7ef76;
  --paper: #f8f7f1;
  --line: #ccd1c7;
  --muted: #68756d;
  --orange: #eb713c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: #e4e5de;
}

button,
input,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: rgb(248 247 241 / 94%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  fill: var(--lime);
  background: var(--green);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
}

nav {
  display: flex;
  gap: 28px;
  color: #3e4b44;
  font-size: 13px;
  font-weight: 600;
}

nav a,
.header-action {
  transition: color 160ms ease;
}

nav a:hover,
.header-action:hover {
  color: var(--orange);
}

.header-action {
  justify-self: end;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

main,
footer {
  width: min(1500px, calc(100% - clamp(20px, 5vw, 88px)));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  min-height: 650px;
  border-inline: 1px solid var(--line);
  background: var(--paper);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 8vw, 118px);
  border-right: 1px solid var(--line);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-bottom: 42px;
  padding: 9px 13px;
  border: 1px solid #b7c2b4;
  color: #435247;
  background: #f4f6ef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(235 113 60 / 14%);
  animation: pulse 2s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 17px;
  color: #4f6f5d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 82px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--green);
}

.button-primary:hover {
  color: var(--green);
  background: var(--lime);
}

.button-secondary {
  color: var(--green);
  background: transparent;
}

.button-secondary:hover {
  background: var(--green-soft);
}

.hero-visual {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 540px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
}

.visual-topline,
.visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.building-mark {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: center;
  width: min(420px, 86%);
  margin: auto;
  border-top: 1px solid rgb(255 255 255 / 35%);
  border-left: 1px solid rgb(255 255 255 / 35%);
  transform: perspective(650px) rotateY(-12deg) rotateX(4deg);
}

.building-mark span {
  aspect-ratio: 1.4;
  border-right: 1px solid rgb(255 255 255 / 35%);
  border-bottom: 1px solid rgb(255 255 255 / 35%);
}

.building-mark span:nth-child(2),
.building-mark span:nth-child(7),
.building-mark span:nth-child(9) {
  background: var(--lime);
}

.building-mark span:nth-child(5),
.building-mark span:nth-child(12) {
  background: var(--orange);
}

.visual-caption {
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 24%);
}

.visual-caption p {
  max-width: 230px;
  margin: 0;
  text-align: right;
  line-height: 1.5;
}

.development-note {
  display: flex;
  align-items: center;
  gap: 36px;
  min-height: 66px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid var(--green);
  color: #fff;
  background: var(--green);
}

.development-note strong {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ticker {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  font-size: 12px;
}

.ticker span::before {
  margin-right: 36px;
  color: var(--orange);
  content: "•";
}

.section {
  padding: clamp(72px, 10vw, 140px) clamp(24px, 7vw, 104px);
  border-inline: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4.3vw, 60px);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(45px, 9vw, 140px);
}

.about-lead {
  margin: 0;
  color: #425148;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.55;
}

.principles {
  border-top: 1px solid var(--line);
}

.principles article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.principles article > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.principles p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.spaces {
  background: #e8ebdf;
}

.section-state {
  padding: 8px 12px;
  border: 1px solid #aab3a4;
  color: #536054;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalog-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 0.75fr);
  border-top: 1px solid #aeb6aa;
  border-left: 1px solid #aeb6aa;
}

.catalog-placeholder,
.catalog-message {
  min-height: 420px;
  padding: 28px;
  border-right: 1px solid #aeb6aa;
  border-bottom: 1px solid #aeb6aa;
}

.catalog-placeholder {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.object-number {
  color: #536054;
  font-size: 11px;
  font-weight: 800;
}

.placeholder-plan {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  grid-template-rows: 1fr 0.75fr;
  align-self: center;
  width: 82%;
  height: 150px;
  margin: auto;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

.placeholder-plan span {
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
}

.placeholder-plan span:nth-child(1) {
  grid-row: 1 / 3;
}

.plan-wide {
  width: 90%;
  transform: rotate(-4deg);
}

.catalog-placeholder p,
.catalog-message p {
  margin: 10px 0 0;
  color: #647065;
  line-height: 1.55;
}

.catalog-message {
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background: var(--green);
}

.catalog-message > span {
  margin-bottom: auto;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-message p {
  color: #cbd7cf;
}

.catalog-message a {
  align-self: flex-start;
  margin-top: 25px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--lime);
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.news-grid article {
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-grid time {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.news-featured {
  color: #fff;
  background: var(--green);
}

.news-featured time,
.news-featured p {
  color: #cbd7cf;
}

.news-tag {
  align-self: flex-start;
  margin-top: 24px;
  padding: 5px 8px;
  color: var(--green);
  background: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.contacts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 150px);
  background: #ede9de;
}

.contact-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  color: #536054;
  font-size: 12px;
  font-weight: 700;
}

.contact-form {
  align-self: start;
  padding: 30px;
  border: 1px solid #bdc3b8;
  background: var(--paper);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form label span {
  color: #536054;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #adb5aa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.contact-form input {
  min-height: 46px;
}

.contact-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--orange);
  color: #4e5c53;
  background: #f3eee4;
  font-size: 12px;
}

.form-message-visible {
  display: block;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 150px;
  padding: 30px clamp(24px, 4vw, 60px);
  color: #c9d3cc;
  background: #102e23;
}

.brand-footer {
  color: #fff;
}

footer > p {
  margin: 0;
  font-size: 12px;
}

footer > span {
  justify-self: end;
  font-size: 11px;
}

@keyframes pulse {
  50% {
    opacity: 0.55;
  }
}

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

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

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 440px;
  }

  .catalog-preview,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-message,
  .news-featured {
    grid-column: 1 / -1;
  }

  .catalog-message {
    min-height: 320px;
  }

  .contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .header-action {
    padding: 9px 11px;
    border: 1px solid var(--green);
    font-size: 10px;
  }

  main,
  footer {
    width: calc(100% - 20px);
  }

  .hero-copy,
  .section {
    padding: 58px 22px;
  }

  .status-pill {
    margin-bottom: 34px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-visual {
    min-height: 360px;
    padding: 20px;
  }

  .development-note {
    min-height: 58px;
    padding-inline: 18px;
  }

  .development-note strong {
    display: none;
  }

  .about-grid,
  .catalog-preview,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .catalog-message,
  .news-featured {
    grid-column: auto;
  }

  .section-heading-row {
    align-items: start;
  }

  .catalog-placeholder,
  .catalog-message {
    min-height: 350px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 34px;
  }

  footer > p,
  footer > span {
    justify-self: start;
  }
}
