:root {
  --green: #87c934;
  --green-dark: #67ad1f;
  --text: #121212;
  --muted: #5d5d5d;
  --line: #ececec;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; }

.section { padding: 64px 0; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.container--narrow { width: min(650px, calc(100% - 32px)); }
.text-center { text-align: center; }

.hero { padding-top: 86px; padding-bottom: 60px; }
.hero__inner { text-align: center; }
h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.12;
  font-weight: 800;
}
.lead {
  width: min(590px, 100%);
  margin: 44px auto 0;
  font-size: 18px;
  line-height: 1.55;
}
.crop-cards {
  display: grid;
  grid-template-columns: repeat(3, 252px);
  justify-content: center;
  gap: 28px;
  margin-top: 72px;
}
.crop-cards img {
  width: 252px;
  height: 252px;
  object-fit: cover;
}

.cta-band {
  position: relative;
  background: var(--green);
  margin: 0 auto 66px;
  width: min(1196px, calc(100% - 48px));
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  border-top: 64px solid rgba(255, 255, 255, .22);
  border-right: 64px solid transparent;
}
.cta-band__link {
  display: block;
  padding: 45px 20px;
  color: #fff;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 800;
  text-align: center;
  letter-spacing: .02em;
}
.cta-band__link:hover { text-decoration: none; background: rgba(0,0,0,.05); }

.concordia {
  width: min(1196px, calc(100% - 48px));
  min-height: 438px;
  margin: 0 auto 64px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #191919;
}
.concordia__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)), url('../assets/concordia_bg.jpg') center / cover no-repeat;
  filter: saturate(.95);
  transform: scale(1.08);
}
.concordia__content { position: relative; z-index: 1; padding: 36px 16px; }
.concordia h2 {
  margin: 0 0 22px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  font-weight: 800;
}
.concordia p {
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.45;
}

.faq { padding-top: 0; padding-bottom: 54px; }
.accordion__item {
  border-top: 1px solid var(--line);
}
.accordion__item:last-child { border-bottom: 1px solid var(--line); }
.accordion__button {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0 18px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.accordion__icon {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
}
.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #777;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}
.accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__item.is-open .accordion__icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.accordion__item.is-open .accordion__icon::after { transform: translate(-50%, -50%) rotate(-45deg); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion__item.is-open .accordion__panel { max-height: 460px; }
.accordion__panel p,
.accordion__panel ul {
  margin: 0 0 24px;
  color: #232323;
  font-size: 14px;
}
.accordion__panel ul {
  padding-left: 18px;
}
.accordion__panel li { margin: 2px 0; }

.living { padding-top: 38px; padding-bottom: 42px; }
.living h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.2;
  font-weight: 800;
}
.living p { margin: 2px auto; font-size: 15px; }

.gallery { padding: 36px 0 36px; }
.gallery__grid {
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease, filter .3s ease;
}
.gallery__item:hover img { transform: scale(1.05); filter: brightness(.9); }

.work { padding-top: 64px; padding-bottom: 105px; }
.work__grid {
  width: min(820px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.work img { width: 100%; height: auto; }
.work h2 {
  margin: -5px 0 22px;
  font-size: clamp(25px, 3.8vw, 31px);
  line-height: 1.13;
  font-weight: 800;
}
.work p { margin: 0 0 6px; font-size: 16px; line-height: 1.45; }

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 42px;
  height: 42px;
  border: 1px solid #eee;
  border-radius: 50%;
  background: #fff;
  color: #777;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top:hover { transform: translateY(-2px); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 70px;
  background: rgba(0,0,0,.86);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1000px, 90vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.lightbox__close,
.lightbox__nav {
  position: fixed;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
  transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close {
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 70px;
  border-radius: 999px;
  font-size: 48px;
  line-height: 1;
}
.lightbox__nav--prev { left: 25px; }
.lightbox__nav--next { right: 25px; }

@media (max-width: 900px) {
  .crop-cards { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .crop-cards img { width: 100%; height: auto; aspect-ratio: 1; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 42px 0; }
  .hero { padding-top: 52px; }
  .lead { margin-top: 28px; font-size: 16px; }
  .crop-cards { margin-top: 36px; grid-template-columns: 1fr; width: min(252px, 100%); margin-left: auto; margin-right: auto; }
  .cta-band, .concordia, .gallery__grid { width: calc(100% - 24px); }
  .cta-band__link { padding: 30px 14px; }
  .concordia { min-height: 360px; }
  .concordia p { font-size: 16px; }
  .gallery__grid { grid-template-columns: 1fr; gap: 12px; }
  .accordion__item.is-open .accordion__panel { max-height: 720px; }
  .lightbox { padding: 50px 16px; }
  .lightbox__nav { width: 42px; height: 58px; font-size: 38px; }
}


.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 36px;
  text-align: center;
}
.section-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
.section-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.1;
  font-weight: 800;
}
.section-heading p {
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}
.jobs {
  padding-top: 8px;
  padding-bottom: 76px;
}
.jobs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.job-card {
  display: grid;
  grid-template-columns: minmax(260px, 410px) 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 46px rgba(0,0,0,.08);
}
.job-card__image {
  min-height: 100%;
  background: #f3f8ed;
}
.job-card__image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.job-card__content {
  padding: 30px;
}
.job-card__place,
.job-card__salary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--green-dark);
  font-weight: 800;
}
.job-card__salary {
  color: #161616;
  background: #f0f8e8;
  border-radius: 999px;
  padding: 8px 14px;
}
.job-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 800;
}
.job-card h3 {
  margin: 18px 0 6px;
  font-size: 16px;
  font-weight: 800;
}
.job-card p,
.job-card li {
  font-size: 15px;
}
.job-card p {
  margin: 0 0 10px;
}
.job-card ul {
  margin: 0 0 10px;
  padding-left: 20px;
}
.job-card li {
  margin: 3px 0;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-btn:hover {
  text-decoration: none;
  background: #1fbd59;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .34);
}
.whatsapp-btn i {
  font-size: 22px;
}

@media (max-width: 900px) {
  .job-card { grid-template-columns: 1fr; }
  .job-card__image img { min-height: 260px; }
}

@media (max-width: 600px) {
  .jobs { padding-top: 0; padding-bottom: 48px; }
  .section-heading { margin-bottom: 24px; }
  .section-heading p { font-size: 15px; }
  .job-card { border-radius: 20px; }
  .job-card__content { padding: 22px; }
  .job-card__image img { min-height: 210px; }
  .whatsapp-btn { width: 100%; padding: 13px 16px; }
}
