.page-header {
  min-height: 320px;
  background: linear-gradient(rgba(0,35,20,.82), rgba(0,35,20,.82)), url('/assets/img/hero.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 7%;
}

.page-header span {
  color: #35b779;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
  font-size: 13px;
}

.page-header h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 500;
  margin: 14px 0;
}

.page-header p {
  max-width: 720px;
  line-height: 1.8;
  font-size: 18px;
}

.page-content {
  padding: 80px 7%;
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.page-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  margin-bottom: 20px;
}

.page-content p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 17px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}

.feature-list li {
  list-style: none;
  padding: 16px 18px;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
}

body.dark .feature-list li {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

.empty-state {
  border: 1px dashed rgba(12,107,61,.35);
  padding: 45px;
  border-radius: 16px;
  text-align: center;
  background: #fff;
}

body.dark .empty-state {
  background: #101514;
}

.empty-state h2 {
  margin-bottom: 12px;
}

@media (max-width: 850px) {
  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-content {
    padding: 60px 5%;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  padding: 35px;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  border: none;
  background: var(--green);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

body.dark .contact-form {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .contact-form input,
body.dark .contact-form select,
body.dark .contact-form textarea {
  background: #080c0a;
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.property-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.property-box {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  padding: 45px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.property-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #edf9f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.property-icon i {
  font-size: 38px;
  color: var(--green);
}

.property-box h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.property-box p {
  margin-bottom: 25px;
}

body.dark .property-box {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

@media (max-width: 850px) {
  .property-sections {
    grid-template-columns: 1fr;
  }
}

.about-highlight {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.about-highlight h3 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 18px;
}

.about-highlight p {
  color: #fff;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.mv-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #edf9f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.mv-icon i {
  color: var(--green);
  font-size: 32px;
}

.mv-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.ceo-section {
  padding-top: 40px;
}

.ceo-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.ceo-image {
  min-height: 520px;
  background: #edf9f2;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ceo-content {
  padding: 55px;
}

.ceo-content h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  margin: 12px 0 22px;
}

.ceo-signature {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.12);
  display: grid;
  gap: 5px;
}

.ceo-signature strong {
  font-size: 20px;
}

.ceo-signature span {
  color: var(--green);
  font-weight: 800;
}

body.dark .mv-card,
body.dark .ceo-card {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .ceo-signature {
  border-top-color: rgba(255,255,255,.12);
}

@media (max-width: 900px) {
  .mission-vision,
  .ceo-card {
    grid-template-columns: 1fr;
  }

  .ceo-image {
    min-height: 380px;
  }

  .ceo-content {
    padding: 35px;
  }
}

.services-page {
  display: grid;
  gap: 35px;
}

.service-detail {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,.07);
  padding: 45px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 45px;
  align-items: center;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-icon {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #edf9f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-icon i {
  font-size: 78px;
  color: var(--green);
}

.service-detail h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  margin-bottom: 15px;
}

.service-detail .feature-list {
  margin-bottom: 25px;
}

body.dark .service-detail {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

@media (max-width: 850px) {
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-detail-icon {
    width: 135px;
    height: 135px;
  }

  .service-detail-icon i {
    font-size: 54px;
  }
}

.section-title-left {
  margin-bottom: 28px;
}

.section-title-left h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  margin: 10px 0;
}

.section-title-left p {
  max-width: 760px;
  color: var(--muted);
}

.property-list-section {
  padding-top: 40px;
}

.property-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 6px;
}

.property-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery img:first-child {
  grid-row: span 2;
}

.property-info {
  padding: 28px;
}

.property-status {
  display: inline-flex;
  background: #edf9f2;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.property-info h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.property-meta span {
  background: #f5f8f6;
  padding: 10px 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.property-actions a {
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

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

.action-secondary {
  border: 1px solid var(--green);
  color: var(--green);
}

body.dark .property-card {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .property-meta span {
  background: #080c0a;
}

@media (max-width: 750px) {
  .property-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px 120px;
  }

  .property-gallery img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
}

.properties-search {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
  display: grid;
  grid-template-columns: 1fr 260px 180px;
  gap: 16px;
  margin-bottom: 30px;
}

.properties-search input,
.properties-search select {
  height: 56px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 0 16px;
  font-family: inherit;
  outline: none;
}

.properties-search button {
  border: none;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.property-tabs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.property-tabs a {
  padding: 14px 22px;
  border-radius: 50px;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 900;
}

.property-tabs a.active,
.property-tabs a:hover {
  background: var(--green);
  color: #fff;
}

.property-list {
  display: grid;
  gap: 32px;
}

.clean-empty {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  padding: 55px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.clean-empty h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 500;
  margin-bottom: 12px;
}

.clean-empty p {
  color: var(--muted);
}

.property-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 170px 170px;
  gap: 6px;
}

.property-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery img:first-child {
  grid-row: span 2;
}

.property-info {
  padding: 30px;
}

.property-status {
  display: inline-flex;
  background: #edf9f2;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.property-info h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.property-info h4 {
  color: var(--green);
  font-size: 24px;
  margin-top: 12px;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.property-meta span {
  background: #f5f8f6;
  padding: 10px 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.property-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.property-actions a {
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
}

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

.action-secondary {
  border: 1px solid var(--green);
  color: var(--green);
}

.property-details-hero {
  min-height: 360px;
  background: linear-gradient(rgba(0,35,20,.82), rgba(0,35,20,.82)), url('/assets/img/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 90px 7%;
  display: flex;
  align-items: center;
}

.property-details-hero span {
  color: #35b779;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
}

.property-details-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  margin: 14px 0;
}

.details-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 8px;
  margin-bottom: 45px;
}

.details-gallery a:first-child {
  grid-row: span 2;
}

.details-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 45px;
  align-items: start;
}

.details-contact {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
  display: grid;
  gap: 14px;
}

.btn-outline-dark {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

body.dark .properties-search,
body.dark .clean-empty,
body.dark .property-card,
body.dark .details-contact {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .properties-search input,
body.dark .properties-search select {
  background: #080c0a;
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

body.dark .property-meta span {
  background: #080c0a;
}

@media (max-width: 900px) {
  .properties-search,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .properties-search button {
    height: 56px;
  }

  .details-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .details-gallery a:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 650px) {
  .property-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px 120px;
  }

  .property-gallery img:first-child {
    grid-column: span 2;
    grid-row: auto;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.team-photo {
  height: 330px;
  background: #edf9f2;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 28px;
}

.team-info h3 {
  font-size: 25px;
  margin-bottom: 6px;
}

.team-info span {
  color: var(--green);
  font-weight: 900;
}

.team-info p {
  margin-top: 14px;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team-socials a:hover {
  background: var(--green);
  color: #fff;
}

.team-intro-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  padding: 45px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
}

.team-intro-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  margin: 12px 0 18px;
}

.team-values {
  display: grid;
  gap: 16px;
}

.team-values div {
  background: #edf9f2;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 900;
}

.team-values i {
  color: var(--green);
  font-size: 28px;
}

body.dark .team-card,
body.dark .team-intro-card {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .team-values div {
  background: #080c0a;
}

@media (max-width: 950px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-intro-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.career-cta {
  width: 86%;
  margin: 10px auto 60px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  border-radius: 22px;
  padding: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.career-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 500;
  margin: 10px 0;
}

.career-cta p,
.career-cta .eyebrow {
  color: #fff;
}

.career-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: start;
}

.career-box h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  margin: 12px 0 18px;
}

.career-form {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  padding: 35px;
  display: grid;
  gap: 16px;
}

.career-form input,
.career-form select,
.career-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  padding: 16px;
  font-family: inherit;
  outline: none;
}

.career-form textarea {
  min-height: 150px;
  resize: vertical;
}

.career-form button {
  border: none;
  background: var(--green);
  color: #fff;
  padding: 16px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
}

body.dark .career-form {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .career-form input,
body.dark .career-form select,
body.dark .career-form textarea {
  background: #080c0a;
  color: #fff;
  border-color: rgba(255,255,255,.12);
}

@media (max-width: 850px) {
  .career-cta,
  .career-box {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .career-box {
    display: grid;
  }
}

.team-section {
  padding-top: 30px;
}

.career-list {
  display: grid;
  gap: 24px;
}

.career-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
  padding: 35px;
}

.career-card span {
  display: inline-flex;
  background: #edf9f2;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 16px;
}

.career-card h2 {
  font-family: Georgia, serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 500;
}

.career-card p {
  margin: 12px 0 20px;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.career-meta strong {
  background: #f5f8f6;
  padding: 10px 14px;
  border-radius: 8px;
}

body.dark .career-card {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .career-meta strong {
  background: #080c0a;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.insight-image {
  height: 240px;
  background: #edf9f2;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insight-content {
  padding: 28px;
}

.insight-content span {
  display: inline-flex;
  background: #edf9f2;
  color: var(--green);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 16px;
}

.insight-content h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.insight-content p {
  color: var(--muted);
  line-height: 1.8;
}

.insight-content a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  color: var(--green);
  font-weight: 900;
}

.article-hero {
  min-height: 430px;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 7%;
  display: flex;
  align-items: center;
}

.article-hero span {
  color: #35b779;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 4px;
}

.article-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  margin: 14px 0;
  max-width: 900px;
}

.article-wrap {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 45px;
  align-items: start;
}

.article-body {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.article-body h2,
.article-body h3 {
  font-family: Georgia, serif;
  margin: 25px 0 12px;
}

.article-body p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.article-body ul {
  margin: 20px 0;
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.article-side {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.article-side h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.article-side p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

body.dark .insight-card,
body.dark .article-body,
body.dark .article-side {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .insight-content p,
body.dark .article-body p,
body.dark .article-side p {
  color: #d7d7d7;
}

@media (max-width: 950px) {
  .insights-grid,
  .article-wrap {
    grid-template-columns: 1fr;
  }
}

.managed-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.managed-types article {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
  transition: .25s ease;
}

.managed-types article:hover {
  transform: translateY(-6px);
}

.managed-types i {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #edf9f2;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 22px;
}

.managed-types h3 {
  font-size: 25px;
  margin-bottom: 12px;
}

.managed-types p {
  color: var(--muted);
  line-height: 1.8;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.principles-grid article {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
}

.principles-grid h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  margin-bottom: 14px;
}

.accordion {
  display: grid;
  gap: 16px;
  max-width: 1050px;
  margin: 0 auto;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.accordion-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  text-align: left;
}

.accordion-btn i {
  color: var(--green);
  transition: .25s ease;
}

.accordion-item.active .accordion-btn i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 28px;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 26px;
}

.accordion-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.accordion-content ul {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}

body.dark .managed-types article,
body.dark .principles-grid article,
body.dark .accordion-item {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .accordion-btn {
  color: #fff;
}

body.dark .managed-types p,
body.dark .accordion-content p {
  color: #d7d7d7;
}

@media (max-width: 900px) {
  .managed-types,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .accordion-btn {
    font-size: 17px;
    padding: 21px;
  }
}

.property-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.property-card-v2 {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.property-main-img {
  height: 260px;
  display: block;
  position: relative;
  overflow: hidden;
}

.property-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-main-img span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: #fff;
  padding: 8px 14px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 13px;
}

.property-card-body {
  padding: 24px;
}

.property-card-body h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  margin-bottom: 12px;
}

.property-location i {
  color: var(--green);
}

.property-card-body h4 {
  color: var(--green);
  font-size: 22px;
  margin-bottom: 12px;
}

.caretaker {
  color: var(--muted);
  margin-bottom: 15px;
}

.caretaker a {
  color: var(--green);
  font-weight: 900;
}

.property-view-page {
  padding: 60px 7%;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 45px;
  align-items: start;
}

.property-view-gallery {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 16px;
  position: sticky;
  top: 120px;
}

.thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.thumb-btn {
  width: 95px;
  height: 95px;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.thumb-btn.active {
  border-color: var(--green);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-photo {
  min-height: 620px;
  background: #edf9f2;
  border-radius: 18px;
  overflow: hidden;
}

.main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-view-info {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  position: sticky;
  top: 120px;
}

.property-view-info h1 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 500;
  margin: 14px 0;
}

.property-view-info h2 {
  color: var(--green);
  font-size: 30px;
  margin: 18px 0;
}

.caretaker-box {
  background: #edf9f2;
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.caretaker-box strong {
  color: var(--green);
}

.caretaker-box a {
  color: var(--green);
  font-weight: 900;
}

.property-actions.full {
  display: grid;
}

.copy-link {
  border: none;
  background: var(--green);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.properties-search {
  grid-template-columns: 1fr 180px 180px 220px 150px;
}

body.dark .property-card-v2,
body.dark .property-view-info {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

body.dark .caretaker-box {
  background: #080c0a;
}

@media (max-width: 1100px) {
  .property-grid-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-view-page {
    grid-template-columns: 1fr;
  }

  .property-view-gallery,
  .property-view-info {
    position: static;
  }
}

@media (max-width: 850px) {
  .properties-search {
    grid-template-columns: 1fr;
  }

  .property-grid-list {
    grid-template-columns: 1fr;
  }

  .property-view-gallery {
    grid-template-columns: 1fr;
  }

  .thumbs {
    display: flex;
    overflow-x: auto;
  }

  .main-photo {
    min-height: 380px;
  }
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 500;
  margin-bottom: 18px;
}

.legal-page h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.9;
}

.career-detail-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 45px;
  align-items: start;
}

.career-detail,
.career-apply-box {
  background: #fff;
  border: 1px solid rgba(12,107,61,.14);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.07);
  padding: 35px;
}

.career-detail h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  margin-bottom: 14px;
}

.career-detail h3 {
  margin-top: 28px;
  margin-bottom: 15px;
}

.career-apply-box {
  position: sticky;
  top: 125px;
}

.career-apply-box h3 {
  font-size: 25px;
  margin-bottom: 15px;
}

.career-apply-box p {
  margin-bottom: 12px;
}

body.dark .legal-page p {
  color: #d7d7d7;
}

body.dark .career-detail,
body.dark .career-apply-box {
  background: #101514;
  border-color: rgba(255,255,255,.08);
}

@media (max-width: 850px) {
  .career-detail-layout {
    grid-template-columns: 1fr;
  }

  .career-apply-box {
    position: static;
  }
}
