:root {
  --she-primary: #143845;
  --she-secondary: #0F6B5B;
  --she-gold: #D6A84F;
  --she-bg: #F4F5F7;
  --she-white: #FFFFFF;
  --she-text: #1F2A2A;
  --she-muted: #6B7A75;
  --she-border: rgba(20,56,69,0.12);
}

.she-grid {
  display: grid;
  gap: 20px;
}

.she-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.she-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.she-property-card,
.she-project-card,
.she-property-type-card,
.she-package-card {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(20, 56, 69, 0.06);
  direction: rtl;
}

.she-package-card__image {
  min-height: 200px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.she-package-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.she-package-card__placeholder {
  color: #143845;
  font-weight: 700;
  padding: 30px;
}

.she-property-card__image-link,
.she-project-card__image-link {
  display: block;
}

.she-property-card__image,
.she-project-card__image {
  min-height: 220px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.she-property-card__image img,
.she-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.she-property-card__placeholder,
.she-project-card__placeholder {
  color: #143845;
  font-weight: 700;
}

.she-property-card__content,
.she-project-card__content {
  padding: 22px;
}

.she-property-card__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.she-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.she-badge--purpose {
  background: #0f6b5b;
}

.she-badge--featured {
  background: #d6a84f;
}

.she-property-card__title,
.she-project-card__title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  color: #143845;
}

.she-property-card__title a,
.she-project-card__title a {
  color: inherit;
  text-decoration: none;
}

.she-property-card__meta,
.she-project-card__meta,
.she-property-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #546374;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.she-property-card__price {
  font-size: 1rem;
  color: #143845;
}

.she-property-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.she-button--primary {
  background: #0f6b5b;
  color: #ffffff;
}

.she-button--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.she-button--call {
  background: #143845;
  color: #ffffff;
}

.she-button--details {
  background: transparent;
  color: #143845;
  border-color: #e6e9ee;
}

.she-estate-search,
.she-quick-search {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 20px;
  padding: 26px;
}

.she-estate-search__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.she-estate-search__field,
.she-quick-search__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.she-estate-search__field--checkbox,
.she-quick-search__field--checkbox {
  grid-column: span 3;
}

.she-estate-search__actions,
.she-quick-search__submit {
  margin-top: 18px;
}

.she-property-types-slider,
.she-properties-slider {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.she-property-type-card {
  padding: 24px;
  background: #f4f5f7;
  text-align: center;
}

.she-property-type-card__name {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #143845;
}

.she-property-type-card__count {
  color: #0f6b5b;
}

.she-no-results,
.she-search-no-results {
  padding: 24px;
  background: #fff7e0;
  border: 1px solid #f0d8a6;
  border-radius: 16px;
  color: #143845;
}

.she-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.she-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.she-form-field--wide {
  grid-column: span 2;
}

.she-message {
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
}

.she-message--success {
  background: #e6f7ef;
  color: #0f6b5b;
}

.she-message--warning {
  background: #fff4e6;
  color: #7a532d;
}

.she-dashboard__overview,
.she-dashboard__section,
.she-dashboard__actions {
  margin-bottom: 24px;
}

.she-dashboard__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.she-dashboard__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4f5f7;
  color: #143845;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
}

.she-dashboard__nav a.active,
.she-dashboard__nav a:hover {
  background: #0f6b5b;
  color: #ffffff;
  border-color: #0f6b5b;
}

.she-dashboard__panel {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
}

.she-dashboard__inquiry-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.she-dashboard__inquiry-item {
  background: #f4f5f7;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.she-dashboard__inquiry-item a {
  color: #0f6b5b;
  font-weight: 700;
  text-decoration: none;
}

.she-dashboard__cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.she-dashboard__card {
  background: #f4f5f7;
  border-radius: 16px;
  padding: 20px;
  text-align: right;
}


.she-dashboard__card span {
  color: #546374;
  display: block;
  margin-bottom: 10px;
}

.she-dashboard__card strong {
  color: #143845;
  font-size: 1.6rem;
}

.she-dashboard__actions {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .she-grid--3,
  .she-grid--4,
  .she-estate-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .she-form-grid {
    grid-template-columns: 1fr;
  }
  .she-dashboard__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .she-grid--3,
  .she-grid--4,
  .she-estate-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .she-form-grid {
    grid-template-columns: 1fr;
  }
  .she-dashboard__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.she-single-property {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
}

.she-single-property__hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.she-single-property__image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

.she-single-property__summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.she-single-property__title {
  margin: 0;
  font-size: 2rem;
  color: #143845;
}

.she-single-property__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.she-single-property__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: #546374;
}

.she-single-property__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.she-single-property__content {
  display: grid;
  gap: 30px;
}

.she-single-property__section {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 20px;
  padding: 24px;
}

.she-single-property__gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.she-single-property__gallery-item {
  border-radius: 18px;
  overflow: hidden;
}

.she-single-property__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .she-single-property__hero {
    grid-template-columns: 1fr;
  }

  .she-single-property__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .she-grid--3,
  .she-grid--4,
  .she-estate-search__grid {
    grid-template-columns: 1fr;
  }

  .she-property-card__actions {
    flex-direction: column;
  }
}

.she-property-card__extra {
  margin-top: 12px;
}

.she-property-card__tag {
  display: inline-block;
  background: rgba(15,107,91,0.1);
  color: var(--she-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.she-property-card__tag--expat {
  background: rgba(214,168,79,0.15);
  color: var(--she-gold);
}

.she-single-property {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 20px;
}

.she-single-property__hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.she-single-property__image {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 28px;
}

.she-single-property__summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.she-single-property__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.she-single-property__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-single-property__title {
  margin: 0;
  font-size: 2.2rem;
  color: var(--she-text);
}

.she-single-property__price strong {
  color: var(--she-primary);
  font-size: 1.8rem;
}

.she-single-property__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: var(--she-muted);
}

.she-single-property__info-item {
  background: var(--she-bg);
  border: 1px solid var(--she-border);
  border-radius: 16px;
  padding: 14px 16px;
}

.she-single-property__info-item--highlight {
  border-color: var(--she-gold);
  background: rgba(214,168,79,0.1);
}

.she-single-property__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.she-single-property__content {
  display: grid;
  gap: 30px;
}

.she-single-property__section {
  background: var(--she-white);
  border: 1px solid var(--she-border);
  border-radius: 24px;
  padding: 26px;
}

.she-single-property__gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.she-single-property__gallery-item {
  border-radius: 20px;
  overflow: hidden;
}

.she-single-property__gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.she-single-property__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-feature-tag {
  background: var(--she-bg);
  color: var(--she-text);
  border: 1px solid var(--she-border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.95rem;
}

.she-single-property__section--contact-form {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .she-single-property__hero {
    grid-template-columns: 1fr;
  }

  .she-single-property__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .she-single-property__gallery {
    grid-template-columns: 1fr;
  }
}

.she-auth-card,
.she-account-form-wrap,
.she-dashboard__hero,
.she-dashboard__section,
.she-dashboard__panel,
.she-account-panel {
  direction: rtl;
  background: #ffffff;
  border: 1px solid var(--she-border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(20, 56, 69, 0.07);
}

.she-auth-card {
  max-width: 760px;
  margin: 24px auto;
  padding: 28px;
  text-align: right;
}

.she-auth-card h3,
.she-account-form-wrap h3,
.she-dashboard h2,
.she-dashboard h3 {
  margin-top: 0;
  color: var(--she-primary);
  line-height: 1.4;
}

.she-auth-card p,
.she-dashboard__hero p,
.she-account-panel p {
  color: var(--she-muted);
  margin-bottom: 0;
}

.she-auth-card__actions,
.she-form-actions,
.she-dashboard__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.she-account-form-wrap {
  max-width: 980px;
  margin: 24px auto;
  padding: 28px;
}

.she-account-form-wrap--login {
  max-width: 640px;
}

.she-account-form-wrap--office {
  max-width: 1040px;
}

.she-account-form__header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0f4;
}

.she-account-form__header h2 {
  margin: 4px 0 8px;
  color: var(--she-primary);
  line-height: 1.35;
}

.she-account-form__header p {
  max-width: 720px;
  margin: 0;
  color: var(--she-muted);
}

.she-form-section {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: #f8fafb;
  border: 1px solid #edf0f4;
  border-radius: 10px;
}

.she-form-section h3 {
  margin: 0;
  color: var(--she-primary);
  font-size: 1.05rem;
}

.she-account-form,
.she-frontend-form {
  display: grid;
  gap: 22px;
}

.she-form-field label {
  color: var(--she-text);
  font-weight: 700;
}

.she-form-field input,
.she-form-field select,
.she-form-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
  color: var(--she-text);
  padding: 10px 12px;
  font: inherit;
}

.she-form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.she-form-field--checkbox label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.she-form-field--checkbox input {
  width: auto;
  min-height: 0;
}

.she-dashboard {
  display: grid;
  gap: 22px;
  direction: rtl;
}

.she-dashboard__hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px;
}

.she-dashboard__eyebrow {
  display: inline-flex;
  color: var(--she-secondary);
  font-weight: 800;
  margin-bottom: 8px;
}

.she-dashboard__nav {
  gap: 10px;
}

.she-dashboard__nav a {
  border-radius: 8px;
  min-height: 42px;
}

.she-dashboard__section,
.she-dashboard__panel,
.she-account-panel {
  padding: 24px;
}

.she-dashboard__cards {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.she-dashboard__card {
  border: 1px solid var(--she-border);
  border-radius: 10px;
}

.she-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.she-dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.she-dashboard-table th,
.she-dashboard-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #e6e9ee;
  text-align: right;
  vertical-align: middle;
}

.she-dashboard-table th {
  color: var(--she-primary);
  background: #f7f9fb;
  font-weight: 800;
}

.she-dashboard-table a {
  color: var(--she-secondary);
  font-weight: 700;
  text-decoration: none;
}

.she-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  background: #eef2f5;
  color: var(--she-muted);
}

.she-status--publish {
  background: rgba(15, 107, 91, 0.12);
  color: var(--she-secondary);
}

.she-status--pending {
  background: rgba(214, 168, 79, 0.18);
  color: #8a641c;
}

.she-status--draft,
.she-status--private,
.she-status--future {
  background: rgba(20, 56, 69, 0.1);
  color: var(--she-primary);
}

.she-account-meta {
  display: grid;
  gap: 14px;
  margin: 0;
}

.she-account-meta div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f4;
}

.she-account-meta dt {
  color: var(--she-muted);
  font-weight: 700;
}

.she-account-meta dd {
  margin: 0;
  color: var(--she-text);
  font-weight: 800;
}

.she-admin-settings {
  direction: rtl;
  max-width: 1100px;
}

.she-admin-box {
  background: #ffffff;
  border: 1px solid #dcdcde;
  border-radius: 8px;
  padding: 20px;
  margin-top: 18px;
}

.she-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

@media (max-width: 720px) {
  .she-auth-card,
  .she-account-form-wrap,
  .she-dashboard__hero,
  .she-dashboard__section,
  .she-dashboard__panel {
    padding: 18px;
  }

  .she-dashboard__hero,
  .she-auth-card__actions,
  .she-form-actions,
  .she-dashboard__quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .she-account-meta div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.she-property-form {
  display: grid;
  gap: 24px;
}

.she-property-form-section {
  background: #ffffff;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(20, 56, 69, 0.08);
  direction: rtl;
}

.she-property-form-section__header {
  margin-bottom: 20px;
}

.she-property-form-section__title {
  color: #143845;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 12px;
}

.she-property-form-section__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: #d6a84f;
}

.she-property-form-section__desc {
  color: #6b7a75;
  margin: 12px 0 0;
  line-height: 1.7;
}

.she-property-form-section--submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.she-property-form .she-form-grid,
.she-form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.she-property-form .she-form-field--wide {
  grid-column: span 3;
}

.she-property-form .she-form-field small {
  color: #6b7a75;
  font-size: 0.86rem;
  line-height: 1.6;
}

.she-image-upload-box,
.she-gallery-upload-box {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 14px;
  border: 1px dashed rgba(20, 56, 69, 0.28);
  border-radius: 16px;
  background: #f8fafb;
}

.she-map-help {
  display: block;
}

.she-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.she-checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  background: #f8fafb;
  color: #1f2a2a;
}

.she-checkbox-grid input {
  width: auto;
  min-height: 0;
}

.she-property-card {
  border-radius: 18px;
}

.she-property-card__image {
  min-height: 240px;
}

.she-property-card__placeholder,
.she-single-property__placeholder {
  width: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f4f5f7 0%, #e8edf0 100%);
  color: #143845;
  text-align: center;
  font-weight: 800;
}

.she-property-placeholder__icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #ffffff;
  color: #0f6b5b;
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(20, 56, 69, 0.08);
}

.she-badge--secondary {
  background: #143845;
}

.she-badge--status {
  background: #546374;
}

.she-badge--expat {
  background: #8a641c;
}

.she-property-card__price {
  display: block;
  margin-bottom: 10px;
  color: #143845;
  font-size: 1.15rem;
}

.she-property-card__excerpt {
  color: #6b7a75;
  margin: -4px 0 14px;
  line-height: 1.65;
}

.she-property-card__details span,
.she-property-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #f4f5f7;
}

.she-single-property__gallery-main {
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  background: #f4f5f7;
}

.she-single-property__gallery-main img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
}

.she-single-property__placeholder {
  min-height: 480px;
}

.she-single-property__price {
  display: grid;
  gap: 6px;
  text-align: left;
}

.she-single-property__price span {
  color: #0f6b5b;
  font-weight: 700;
}

.she-single-property__info-item {
  display: grid;
  gap: 5px;
}

.she-single-property__info-item strong {
  color: #143845;
}

.she-single-property__quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.she-single-property__quick-facts div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 16px;
  background: #f8fafb;
}

.she-single-property__quick-facts span {
  color: #6b7a75;
  font-weight: 700;
}

.she-single-property__quick-facts strong {
  color: #143845;
  font-size: 1.05rem;
}

.she-single-property__map {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(20, 56, 69, 0.12);
  background: #f4f5f7;
  margin-bottom: 16px;
}

.she-single-property__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.she-single-property__contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .she-property-form .she-form-grid,
  .she-form-grid--3,
  .she-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .she-property-form .she-form-field--wide {
    grid-column: span 2;
  }

  .she-single-property__quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-property-form-section,
  .she-property-form-section--submit {
    padding: 18px;
  }

  .she-property-form-section--submit {
    flex-direction: column;
    align-items: stretch;
  }

  .she-property-form .she-form-grid,
  .she-form-grid--3,
  .she-checkbox-grid,
  .she-single-property__quick-facts {
    grid-template-columns: 1fr;
  }

  .she-property-form .she-form-field--wide {
    grid-column: span 1;
  }

  .she-single-property__gallery-main,
  .she-single-property__gallery-main img,
  .she-single-property__placeholder {
    min-height: 300px;
  }

  .she-single-property__top,
  .she-single-property__price {
    text-align: right;
  }
}

/* Unified SyHub Estate form system */
:root {
  --she-soft: #eef3f1;
  --she-danger: #9b2c2c;
  --she-danger-bg: #fff1f1;
  --she-success-bg: #e8f7ef;
}

.she-form-page {
  direction: rtl;
  width: 100%;
  padding: 28px 16px;
  background: transparent;
}

.she-form-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.she-form-shell--narrow {
  width: min(100%, 680px);
}

.she-form-shell--wide {
  width: min(100%, 1120px);
}

.she-form-card,
.she-auth-card.she-form-card,
.she-account-form-wrap.she-form-card {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 32px;
  background: var(--she-white);
  border: 1px solid var(--she-border);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(20, 56, 69, 0.08);
  text-align: right;
}

.she-form-header {
  display: grid;
  gap: 8px;
}

.she-form-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 107, 91, 0.1);
  color: var(--she-secondary);
  font-size: 0.86rem;
  font-weight: 900;
}

.she-form-title {
  margin: 0;
  color: var(--she-primary);
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.she-form-description {
  max-width: 760px;
  margin: 0;
  color: var(--she-muted);
  line-height: 1.8;
}

.she-form-divider {
  width: 100%;
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.55), rgba(20, 56, 69, 0.08));
}

.she-form-card form,
.she-account-form,
.she-frontend-form {
  display: grid;
  gap: 22px;
}

.she-form-section,
.she-property-form-section {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 24px;
  background: var(--she-soft);
  border: 1px solid rgba(20, 56, 69, 0.08);
  border-radius: 22px;
  box-shadow: none;
}

.she-form-section--compact {
  background: #f8fafb;
}

.she-form-section__title,
.she-property-form-section__title {
  position: relative;
  margin: 0;
  padding-bottom: 12px;
  color: var(--she-primary);
  font-size: 1.14rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.she-form-section__title::after,
.she-property-form-section__title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: var(--she-gold);
}

.she-form-section__desc,
.she-property-form-section__desc {
  max-width: 760px;
  margin: -4px 0 0;
  color: var(--she-muted);
  line-height: 1.75;
}

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

.she-property-form .she-form-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.she-form-field,
.she-form-field--wide,
.she-form-field--full {
  min-width: 0;
}

.she-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.she-form-field--wide,
.she-form-field--full,
.she-property-form .she-form-field--wide {
  grid-column: 1 / -1;
}

.she-label,
.she-form-field label {
  color: var(--she-text);
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.5;
}

.she-form-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.she-form-field select,
.she-form-field textarea,
.she-input,
.she-select,
.she-textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(20, 56, 69, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--she-text);
  font: inherit;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.she-form-field textarea,
.she-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.7;
}

.she-form-field input::placeholder,
.she-form-field textarea::placeholder {
  color: rgba(107, 122, 117, 0.72);
}

.she-form-field input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
.she-form-field select:focus,
.she-form-field textarea:focus,
.she-input:focus,
.she-select:focus,
.she-textarea:focus {
  border-color: var(--she-secondary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(15, 107, 91, 0.1);
}

.she-help,
.she-upload-note,
.she-form-field small {
  color: var(--she-muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.she-checkbox,
.she-form-field--checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--she-text);
  font-weight: 800;
}

.she-checkbox input,
.she-form-field--checkbox input {
  width: 18px;
  height: 18px;
  min-height: 0;
  accent-color: var(--she-secondary);
}

.she-upload-box,
.she-image-upload-box,
.she-gallery-upload-box {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px dashed rgba(20, 56, 69, 0.28);
  border-radius: 20px;
  background: #ffffff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.she-upload-box::before,
.she-image-upload-box::before,
.she-gallery-upload-box::before {
  content: "↑";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  border-radius: 999px;
  background: rgba(15, 107, 91, 0.1);
  color: var(--she-secondary);
  font-weight: 900;
}

.she-upload-box:hover,
.she-image-upload-box:hover,
.she-gallery-upload-box:hover {
  border-color: var(--she-secondary);
  background: #fbfdfc;
  box-shadow: 0 10px 24px rgba(20, 56, 69, 0.06);
}

.she-upload-box input[type="file"],
.she-image-upload-box input[type="file"],
.she-gallery-upload-box input[type="file"] {
  max-width: 100%;
  color: var(--she-muted);
  font-weight: 700;
}

.she-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.she-checkbox-grid label {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 56, 69, 0.12);
  border-radius: 14px;
  background: #ffffff;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.she-checkbox-grid label:hover {
  border-color: rgba(15, 107, 91, 0.34);
  background: #fbfdfc;
}

.she-checkbox-grid input {
  accent-color: var(--she-secondary);
}

.she-form-actions,
.she-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 0;
}

.she-form-section--submit,
.she-property-form-section--submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.she-btn,
.she-button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
}

.she-btn--primary,
.she-button--primary {
  background: var(--she-secondary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 107, 91, 0.18);
}

.she-btn--primary:hover,
.she-button--primary:hover {
  background: #0a574a;
  color: #ffffff;
  transform: translateY(-1px);
}

.she-btn--secondary,
.she-button--secondary,
.she-button--details {
  background: #ffffff;
  color: var(--she-primary);
  border-color: var(--she-border);
  box-shadow: none;
}

.she-btn--secondary:hover,
.she-button--secondary:hover,
.she-button--details:hover {
  border-color: rgba(15, 107, 91, 0.34);
  color: var(--she-secondary);
  background: #fbfdfc;
}

.she-btn--ghost {
  background: transparent;
  color: var(--she-primary);
  border-color: transparent;
  box-shadow: none;
}

.she-btn--ghost:hover {
  background: rgba(20, 56, 69, 0.06);
  color: var(--she-primary);
}

.she-form-message,
.she-message {
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid transparent;
  font-weight: 750;
  line-height: 1.7;
}

.she-form-message--success,
.she-message--success {
  background: var(--she-success-bg);
  color: var(--she-secondary);
  border-color: rgba(15, 107, 91, 0.14);
}

.she-form-message--error,
.she-message--warning {
  background: var(--she-danger-bg);
  color: var(--she-danger);
  border-color: rgba(155, 44, 44, 0.14);
}

.she-auth-shell .she-form-card {
  overflow: hidden;
}

.she-auth-shell .she-form-card::before {
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  margin: -32px -32px 26px auto;
  border-radius: 999px 0 0 999px;
  background: var(--she-gold);
}

@media (max-width: 1024px) {
  .she-form-card,
  .she-auth-card.she-form-card,
  .she-account-form-wrap.she-form-card {
    padding: 28px;
  }

  .she-property-form .she-form-grid--3,
  .she-checkbox-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-form-page {
    padding: 18px 10px;
  }

  .she-form-card,
  .she-auth-card.she-form-card,
  .she-account-form-wrap.she-form-card,
  .she-form-section,
  .she-property-form-section {
    padding: 18px;
    border-radius: 20px;
  }

  .she-auth-shell .she-form-card::before {
    margin: -18px -18px 20px auto;
  }

  .she-form-grid,
  .she-property-form .she-form-grid--3,
  .she-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .she-form-actions,
  .she-auth-actions,
  .she-form-section--submit,
  .she-property-form-section--submit {
    flex-direction: column;
    align-items: stretch;
  }

  .she-btn,
  .she-button {
    width: 100%;
  }
}

.she-page {
  direction: rtl;
  max-width: 1200px;
  margin: 0 auto 42px;
  padding: 20px;
  color: var(--she-text);
}

.she-page *,
.she-page *::before,
.she-page *::after {
  box-sizing: border-box;
}

.she-page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  padding: 40px;
  border: 1px solid var(--she-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 241, 0.96)),
    radial-gradient(circle at left top, rgba(214, 168, 79, 0.14), transparent 34%);
  box-shadow: 0 18px 46px rgba(20, 56, 69, 0.08);
}

.she-page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--she-secondary);
  font-size: 0.86rem;
  font-weight: 900;
}

.she-page-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--she-gold);
}

.she-page-hero__title {
  margin: 0 0 10px;
  color: var(--she-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  font-weight: 900;
}

.she-page-hero__desc {
  max-width: 720px;
  margin: 0;
  color: var(--she-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.she-search-panel {
  margin-bottom: 30px;
  padding: 28px;
  border: 1px solid var(--she-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(20, 56, 69, 0.08);
}

.she-estate-directory-page .she-estate-search {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.she-estate-directory-page .she-estate-search__row {
  margin-bottom: 18px;
}

.she-estate-directory-page .she-estate-search__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.she-estate-directory-page label {
  color: var(--she-primary);
  font-weight: 850;
}

.she-estate-directory-page input[type="search"],
.she-estate-directory-page input[type="number"],
.she-estate-directory-page select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(20, 56, 69, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--she-text);
  box-shadow: none;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.she-estate-directory-page input:focus,
.she-estate-directory-page select:focus {
  border-color: var(--she-secondary);
  box-shadow: 0 0 0 4px rgba(15, 107, 91, 0.1);
}

.she-estate-directory-page input::placeholder {
  color: rgba(107, 122, 117, 0.72);
}

.she-estate-directory-page .she-estate-search__field--checkbox {
  grid-column: auto;
}

.she-estate-directory-page .she-estate-search__field--checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(20, 56, 69, 0.12);
  border-radius: 16px;
  background: var(--she-soft);
  color: var(--she-primary);
}

.she-estate-directory-page .she-estate-search__field--checkbox input {
  width: auto;
  min-height: 0;
  accent-color: var(--she-secondary);
}

.she-estate-directory-page .she-estate-search__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.she-results-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 20px;
}

.she-results-header h2 {
  margin: 0 0 6px;
  color: var(--she-primary);
  font-size: 1.65rem;
  line-height: 1.25;
}

.she-results-header p {
  margin: 0;
  color: var(--she-muted);
  line-height: 1.8;
}

.she-results-header__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.12);
  color: var(--she-primary);
  font-weight: 900;
  white-space: nowrap;
}

.she-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.she-empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 34px;
  border: 1px solid var(--she-border);
  border-radius: 26px;
  background: #ffffff;
  color: var(--she-primary);
  box-shadow: 0 16px 38px rgba(20, 56, 69, 0.07);
}

.she-empty-state strong {
  font-size: 1.15rem;
  font-weight: 900;
}

.she-empty-state p {
  margin: 0 0 6px;
  color: var(--she-muted);
  line-height: 1.8;
}

.she-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  padding: 32px;
  border: 1px solid rgba(15, 107, 91, 0.16);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #eef3f1);
  box-shadow: 0 18px 42px rgba(20, 56, 69, 0.07);
}

.she-page-cta h2 {
  margin: 0 0 8px;
  color: var(--she-primary);
  font-size: 1.7rem;
}

.she-page-cta p {
  max-width: 640px;
  margin: 0;
  color: var(--she-muted);
  line-height: 1.9;
}

.she-page-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .she-page {
    padding: 18px;
  }

  .she-page-hero {
    padding: 34px;
  }

  .she-estate-directory-page .she-estate-search__grid,
  .she-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .she-page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .she-page-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .she-page {
    padding: 12px;
  }

  .she-page-hero,
  .she-search-panel,
  .she-page-cta,
  .she-empty-state {
    padding: 22px;
    border-radius: 22px;
  }

  .she-estate-directory-page .she-estate-search__grid,
  .she-results-grid {
    grid-template-columns: 1fr;
  }

  .she-results-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .she-estate-directory-page .she-estate-search__actions,
  .she-page-cta__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

.she-projects-page {
  margin-bottom: 24px;
}

.she-projects-page + .she-projects-page--investments {
  margin-top: -22px;
}

.she-projects-page__section {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--she-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 56, 69, 0.07);
}

.she-section-header {
  margin-bottom: 22px;
}

.she-section-header h2 {
  margin: 0 0 8px;
  color: var(--she-primary);
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 900;
}

.she-section-header p {
  max-width: 720px;
  margin: 0;
  color: var(--she-muted);
  line-height: 1.85;
}

.she-project-grid,
.she-investment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.she-projects-page .she-project-card,
.she-projects-page .she-investment-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 56, 69, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.she-projects-page .she-project-card:hover,
.she-projects-page .she-investment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 91, 0.2);
  box-shadow: 0 18px 42px rgba(20, 56, 69, 0.1);
}

.she-projects-page .she-project-card__image-link,
.she-projects-page .she-investment-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.she-projects-page .she-project-card__image,
.she-projects-page .she-investment-card__image {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
  background: var(--she-soft);
}

.she-projects-page .she-project-card__image img,
.she-projects-page .she-investment-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.she-projects-page .she-project-card:hover img,
.she-projects-page .she-investment-card:hover img {
  transform: scale(1.035);
}

.she-projects-page .she-project-card__placeholder,
.she-projects-page .she-investment-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px;
  background: linear-gradient(135deg, #f4f5f7 0%, #e8edf0 100%);
  color: var(--she-primary);
  text-align: center;
  font-weight: 900;
}

.she-projects-page .she-project-card__content,
.she-projects-page .she-investment-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.she-projects-page .she-badge {
  margin-bottom: 12px;
}

.she-projects-page .she-project-card__title,
.she-projects-page .she-investment-card__title {
  margin: 0 0 12px;
  color: var(--she-primary);
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 900;
}

.she-projects-page .she-project-card__title a,
.she-projects-page .she-investment-card__title a {
  color: inherit;
  text-decoration: none;
}

.she-projects-page .she-project-card__title a:hover,
.she-projects-page .she-investment-card__title a:hover {
  color: var(--she-secondary);
}

.she-projects-page .she-project-card__meta,
.she-projects-page .she-investment-card__meta,
.she-projects-page .she-project-card__details,
.she-projects-page .she-investment-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--she-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.she-projects-page .she-project-card__meta span,
.she-projects-page .she-investment-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-weight: 800;
}

.she-projects-page .she-project-card__details,
.she-projects-page .she-investment-card__details {
  flex-direction: column;
  width: 100%;
}

.she-projects-page .she-project-card__details span,
.she-projects-page .she-investment-card__details span {
  padding: 10px 12px;
  border: 1px solid rgba(20, 56, 69, 0.09);
  border-radius: 14px;
  background: #fbfdfc;
  color: var(--she-text);
}

.she-projects-page .she-button--details {
  margin-top: auto;
  background: #ffffff;
  color: var(--she-primary);
  border-color: var(--she-border);
}

.she-projects-page .she-button--details:hover {
  background: var(--she-secondary);
  color: #ffffff;
  border-color: var(--she-secondary);
}

@media (max-width: 1024px) {
  .she-project-grid,
  .she-investment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-projects-page + .she-projects-page--investments {
    margin-top: 0;
  }

  .she-projects-page__section {
    padding: 22px;
    border-radius: 22px;
  }

  .she-project-grid,
  .she-investment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.she-offices-page__section,
.she-office-search {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--she-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 56, 69, 0.07);
}

.she-office-search__grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(240px, 1.4fr) auto;
  gap: 16px;
  align-items: end;
}

.she-office-search label {
  color: var(--she-primary);
  font-weight: 850;
}

.she-office-search select,
.she-office-search input[type="search"] {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(20, 56, 69, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--she-text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.she-office-search select:focus,
.she-office-search input[type="search"]:focus {
  border-color: var(--she-secondary);
  box-shadow: 0 0 0 4px rgba(15, 107, 91, 0.1);
}

.she-office-search__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.she-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.she-office-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 56, 69, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.she-office-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 107, 91, 0.2);
  box-shadow: 0 18px 42px rgba(20, 56, 69, 0.1);
}

.she-office-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.she-office-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--she-soft);
}

.she-office-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.22s ease;
}

.she-office-card:hover .she-office-card__image img {
  transform: scale(1.035);
}

.she-office-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 26px;
  background: linear-gradient(135deg, #f4f5f7 0%, #e8edf0 100%);
  color: var(--she-primary);
  text-align: center;
  font-weight: 900;
}

.she-office-placeholder__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #ffffff;
  color: var(--she-secondary);
  font-size: 2rem;
  box-shadow: 0 10px 24px rgba(20, 56, 69, 0.08);
}

.she-office-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.she-office-card__top {
  margin-bottom: 8px;
}

.she-office-card__title {
  margin: 0 0 12px;
  color: var(--she-primary);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 900;
}

.she-office-card__title a {
  color: inherit;
  text-decoration: none;
}

.she-office-card__title a:hover {
  color: var(--she-secondary);
}

.she-office-card__meta,
.she-office-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--she-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.she-office-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-weight: 800;
}

.she-office-card__details {
  flex-direction: column;
  width: 100%;
}

.she-office-card__details span {
  padding: 10px 12px;
  border: 1px solid rgba(20, 56, 69, 0.09);
  border-radius: 14px;
  background: #fbfdfc;
  color: var(--she-text);
}

.she-office-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.she-office-profile {
  direction: rtl;
  max-width: 1200px;
  margin: 0 auto 44px;
  padding: 22px;
  color: var(--she-text);
}

.she-office-profile *,
.she-office-profile *::before,
.she-office-profile *::after {
  box-sizing: border-box;
}

.she-office-profile__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.she-office-profile__media,
.she-office-profile__summary,
.she-office-profile__section {
  border: 1px solid var(--she-border);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(20, 56, 69, 0.07);
}

.she-office-profile__media {
  min-height: 360px;
  overflow: hidden;
  background: var(--she-soft);
}

.she-office-profile__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.she-office-profile__media .she-office-placeholder {
  min-height: 360px;
}

.she-office-profile__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.she-office-profile__title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.she-office-profile__title-row h1 {
  margin: 0;
  color: var(--she-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 900;
}

.she-office-profile__location,
.she-office-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-office-profile__location {
  margin-bottom: 20px;
}

.she-office-profile__location span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-weight: 800;
}

.she-office-profile__content {
  display: grid;
  gap: 22px;
}

.she-office-profile__section {
  padding: 26px;
}

.she-office-profile__section h2 {
  margin: 0 0 14px;
  color: var(--she-primary);
  font-size: 1.45rem;
  font-weight: 900;
}

.she-office-profile__description {
  color: var(--she-text);
  line-height: 1.95;
}

.she-office-profile__muted,
.she-office-listing-empty {
  margin: 0;
  color: var(--she-muted);
  line-height: 1.8;
}

.she-office-profile__contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.she-office-profile__contact-list span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(20, 56, 69, 0.09);
  border-radius: 16px;
  background: #fbfdfc;
}

.she-office-profile__contact-list strong {
  color: var(--she-primary);
  font-size: 0.86rem;
}

.she-office-profile__contact-list a {
  color: var(--she-secondary);
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.she-office-listings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.she-office-related-card {
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(20, 56, 69, 0.06);
}

.she-office-related-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--she-soft);
}

.she-office-related-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.she-office-related-card__content {
  padding: 18px;
}

.she-office-related-card__content h3 {
  margin: 0 0 12px;
  color: var(--she-primary);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.45;
}

.she-office-related-card__content h3 a {
  color: inherit;
  text-decoration: none;
}

.she-office-related-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.she-office-related-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.she-office-listing-empty {
  padding: 16px 18px;
  border: 1px dashed rgba(20, 56, 69, 0.18);
  border-radius: 16px;
  background: #fbfdfc;
}

@media (max-width: 1024px) {
  .she-office-search__grid,
  .she-offices-grid,
  .she-office-listings,
  .she-office-profile__contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .she-office-profile__hero {
    grid-template-columns: 1fr;
  }

  .she-office-search__actions {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .she-offices-page__section,
  .she-office-search,
  .she-office-profile__summary,
  .she-office-profile__section {
    padding: 22px;
    border-radius: 22px;
  }

  .she-office-search__grid,
  .she-offices-grid,
  .she-office-listings,
  .she-office-profile__contact-list {
    grid-template-columns: 1fr;
  }

  .she-section-header--split {
    align-items: flex-start;
    flex-direction: column;
  }

  .she-office-search__actions {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .she-office-profile {
    padding: 12px;
  }

  .she-office-profile__media,
  .she-office-profile__media img {
    min-height: 260px;
  }

  .she-office-profile__actions,
  .she-office-card__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

.she-placeholder {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(135deg, #EEF3F1, #FFFFFF);
  color: var(--she-primary);
  text-align: center;
}

.she-placeholder::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: -1;
  width: 96px;
  height: 96px;
  opacity: 0.7;
  background-image: radial-gradient(circle, rgba(214, 168, 79, 0.38) 1.4px, transparent 1.5px);
  background-size: 12px 12px;
}

.she-placeholder::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: -1;
  width: 76px;
  height: 3px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.72);
  box-shadow: 0 -9px 0 rgba(214, 168, 79, 0.22);
}

.she-placeholder__icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20, 56, 69, 0.08);
  border-radius: 20px;
  background: #ffffff;
  color: var(--she-secondary);
  box-shadow: 0 12px 28px rgba(20, 56, 69, 0.1);
}

.she-placeholder__icon::before {
  color: currentColor;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.she-placeholder__text {
  color: var(--she-primary);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
}

.she-placeholder--property {
  min-height: 240px;
}

.she-placeholder--property .she-placeholder__icon::before {
  content: "\2302";
}

.she-placeholder--project .she-placeholder__icon::before {
  content: "\2692";
}

.she-placeholder--investment .she-placeholder__icon::before {
  content: "\2197";
}

.she-placeholder--office .she-placeholder__icon::before {
  content: "\25A6";
}

.she-placeholder--project .she-placeholder__icon {
  color: var(--she-gold);
}

.she-placeholder--investment .she-placeholder__icon {
  color: #0F6B5B;
}

.she-placeholder--office .she-placeholder__icon {
  color: #143845;
}

.she-package-card__image .she-placeholder {
  min-height: 200px;
}

.she-project-card__image .she-placeholder,
.she-investment-card__image .she-placeholder,
.she-office-card__image .she-placeholder,
.she-office-related-card__image .she-placeholder {
  min-height: 220px;
}

.she-single-property__gallery-main .she-placeholder {
  min-height: 480px;
}

.she-office-profile__media .she-placeholder {
  min-height: 360px;
}

@media (max-width: 720px) {
  .she-single-property__gallery-main .she-placeholder {
    min-height: 320px;
  }

  .she-office-profile__media .she-placeholder {
    min-height: 260px;
  }
}

.she-home-properties,
.she-home-opportunities {
  direction: rtl;
  max-width: 1200px;
  margin: 0 auto 42px;
  padding: 20px;
  color: var(--she-text);
}

.she-home-properties *,
.she-home-properties *::before,
.she-home-properties *::after,
.she-home-opportunities *,
.she-home-opportunities *::before,
.she-home-opportunities *::after {
  box-sizing: border-box;
}

.she-home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.she-home-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--she-secondary);
  font-size: 0.86rem;
  font-weight: 900;
}

.she-home-section-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--she-gold);
}

.she-home-section-title {
  margin: 0 0 8px;
  color: var(--she-primary);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.22;
  font-weight: 900;
}

.she-home-section-desc {
  max-width: 760px;
  margin: 0;
  color: var(--she-muted);
  line-height: 1.9;
}

.she-home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.she-home-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.she-home-property-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 55px rgba(20, 56, 69, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.she-home-property-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 168, 79, 0.35);
  box-shadow: 0 26px 68px rgba(20, 56, 69, 0.12);
}

.she-property-card-image {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--she-soft);
}

.she-property-card-image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.she-home-property-card:hover .she-property-card-image img {
  transform: scale(1.035);
}

.she-property-card-placeholder,
.she-property-card-placeholder .she-placeholder {
  height: 230px;
  min-height: 230px;
}

.she-home-property-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.she-property-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}

.she-property-card-price {
  display: block;
  margin-bottom: 10px;
  color: var(--she-primary);
  font-size: 1.2rem;
  font-weight: 950;
}

.she-property-card-title {
  margin: 0 0 10px;
  color: var(--she-primary);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 900;
}

.she-property-card-title a {
  color: inherit;
  text-decoration: none;
}

.she-property-card-title a:hover {
  color: var(--she-secondary);
}

.she-property-card-desc {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--she-muted);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.she-property-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 16px;
}

.she-property-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.she-property-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.she-home-opportunities {
  overflow: hidden;
}

.she-opportunities-slider {
  position: relative;
}

.she-opportunities-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.she-opportunities-track::-webkit-scrollbar {
  height: 8px;
}

.she-opportunities-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(20, 56, 69, 0.16);
}

.she-opportunity-card {
  position: relative;
  display: flex;
  min-width: calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  flex: 0 0 calc((100% - 48px) / 3);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(214, 168, 79, 0.2);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(20, 56, 69, 0.08);
  scroll-snap-align: start;
}

.she-opportunity-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--she-gold), rgba(214, 168, 79, 0.18));
}

.she-opportunity-image {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--she-soft);
}

.she-opportunity-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.24s ease;
}

.she-opportunity-card:hover .she-opportunity-image img {
  transform: scale(1.035);
}

.she-opportunity-placeholder,
.she-opportunity-placeholder .she-placeholder {
  height: 220px;
  min-height: 220px;
}

.she-opportunity-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.92);
  color: var(--she-primary);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(20, 56, 69, 0.12);
}

.she-opportunity-badge::before {
  content: "\25A6";
  margin-left: 7px;
  color: currentColor;
  font-size: 1rem;
}

.she-opportunity-card--investment .she-opportunity-badge::before {
  content: "\2197";
}

.she-opportunity-badge--featured {
  top: 58px;
  background: #ffffff;
  color: var(--she-secondary);
}

.she-opportunity-badge--featured::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--she-gold);
}

.she-opportunity-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.she-opportunity-title {
  margin: 0 0 12px;
  color: var(--she-primary);
  font-size: 1.12rem;
  line-height: 1.45;
  font-weight: 900;
}

.she-opportunity-title a {
  color: inherit;
  text-decoration: none;
}

.she-opportunity-title a:hover {
  color: var(--she-secondary);
}

.she-opportunity-meta,
.she-opportunity-value {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.she-opportunity-meta span,
.she-opportunity-value span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.she-opportunity-value {
  flex-direction: column;
}

.she-opportunity-value span {
  width: 100%;
  border: 1px solid rgba(20, 56, 69, 0.08);
  border-radius: 14px;
  background: #fbfdfc;
}

.she-opportunity-desc {
  display: -webkit-box;
  min-height: 3.2em;
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--she-muted);
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.she-opportunity-actions {
  margin-top: auto;
}

.she-slider-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 10px;
}

.she-slider-prev,
.she-slider-next {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--she-border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--she-primary);
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 900;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.she-slider-prev:hover,
.she-slider-next:hover {
  border-color: var(--she-secondary);
  background: var(--she-secondary);
  color: #ffffff;
}

.she-home-empty-state {
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .she-home-properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .she-opportunity-card {
    min-width: calc((100% - 24px) / 2);
    max-width: calc((100% - 24px) / 2);
    flex-basis: calc((100% - 24px) / 2);
  }
}

@media (max-width: 720px) {
  .she-home-properties,
  .she-home-opportunities {
    padding: 12px;
  }

  .she-home-section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .she-home-section-actions,
  .she-home-section-header > .she-button,
  .she-property-card-actions,
  .she-opportunity-actions .she-button {
    width: 100%;
  }

  .she-home-section-actions,
  .she-property-card-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .she-home-properties-grid {
    grid-template-columns: 1fr;
  }

  .she-opportunity-card {
    min-width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

body .she-home-properties,
body .she-home-opportunities,
.elementor-widget-shortcode .she-home-properties,
.elementor-widget-shortcode .she-home-opportunities {
  width: 100%;
  clear: both;
  text-align: right;
}

body .she-home-properties .she-home-section-header,
body .she-home-opportunities .she-home-section-header {
  display: flex !important;
}

body .she-home-properties .she-home-properties-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  width: 100%;
}

body .she-home-properties .she-home-property-card,
body .she-home-opportunities .she-opportunity-card {
  background: #ffffff !important;
  text-align: right;
}

body .she-home-properties .she-home-property-card {
  border: 1px solid rgba(20, 56, 69, 0.1) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 55px rgba(20, 56, 69, 0.08) !important;
}

body .she-home-properties .she-property-card-image,
body .she-home-opportunities .she-opportunity-image {
  width: 100%;
}

body .she-home-properties .she-property-card-image img,
body .she-home-opportunities .she-opportunity-image img {
  width: 100% !important;
  object-fit: cover !important;
}

body .she-home-opportunities .she-opportunities-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  width: 100%;
}

body .she-home-opportunities .she-opportunity-card {
  min-width: calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  flex: 0 0 calc((100% - 48px) / 3) !important;
  border: 1px solid rgba(214, 168, 79, 0.2) !important;
  border-radius: 26px !important;
  box-shadow: 0 22px 60px rgba(20, 56, 69, 0.08) !important;
}

body .she-home-properties a,
body .she-home-opportunities a {
  text-decoration: none;
}

body .she-home-properties .she-button,
body .she-home-opportunities .she-button {
  text-decoration: none !important;
}

@media (max-width: 1024px) {
  body .she-home-properties .she-home-properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .she-home-opportunities .she-opportunity-card {
    min-width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  body .she-home-properties .she-home-properties-grid {
    grid-template-columns: 1fr !important;
  }

  body .she-home-opportunities .she-opportunity-card {
    min-width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

.she-property-architect-card {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 20px 38px rgba(20, 56, 69, 0.13));
}

.she-property-architect-card:hover {
  transform: translateY(-7px) !important;
  filter: drop-shadow(0 28px 52px rgba(20, 56, 69, 0.17));
}

.she-property-card-shell {
  position: relative;
  min-height: 100%;
  padding: 48px 14px 14px;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.96)),
    radial-gradient(circle at 12% 10%, rgba(214, 168, 79, 0.18), transparent 32%);
  clip-path: polygon(0 16%, 50% 0, 100% 16%, 100% 100%, 0 100%);
}

.she-property-architect-card--villa .she-property-card-shell {
  padding-top: 42px;
  clip-path: polygon(0 13%, 18% 4%, 82% 4%, 100% 13%, 100% 100%, 0 100%);
}

.she-property-architect-card--building .she-property-card-shell {
  padding-top: 38px;
  clip-path: polygon(0 9%, 10% 9%, 10% 2%, 35% 2%, 35% 0, 66% 0, 66% 2%, 90% 2%, 90% 9%, 100% 9%, 100% 100%, 0 100%);
}

.she-property-card-roof {
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  pointer-events: none;
}

.she-property-card-roof::before,
.she-property-card-roof::after,
.she-property-card-roof span {
  content: "";
  position: absolute;
  display: block;
}

.she-property-card-roof::before {
  top: 20px;
  right: 10%;
  width: 80%;
  height: 6px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.82);
  transform: skewY(-7deg);
  box-shadow: 0 12px 0 rgba(20, 56, 69, 0.08);
}

.she-property-card-roof::after {
  top: 16px;
  left: 17%;
  width: 18px;
  height: 28px;
  border-radius: 6px 6px 0 0;
  background: rgba(20, 56, 69, 0.84);
}

.she-property-card-roof span {
  top: 38px;
  right: 50%;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 107, 91, 0.34);
  transform: translateX(50%);
}

.she-property-architect-card--villa .she-property-card-roof::before {
  top: 24px;
  right: 16%;
  width: 68%;
  transform: none;
}

.she-property-architect-card--villa .she-property-card-roof span {
  top: 44px;
  width: 62%;
  height: 3px;
  box-shadow:
    0 8px 0 rgba(214, 168, 79, 0.28),
    0 16px 0 rgba(214, 168, 79, 0.15);
}

.she-property-architect-card--building .she-property-card-roof::before {
  top: 21px;
  right: 12%;
  width: 76%;
  transform: none;
  background: rgba(20, 56, 69, 0.84);
}

.she-property-architect-card--building .she-property-card-roof::after {
  top: 34px;
  right: 24%;
  left: auto;
  width: 52%;
  height: 3px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.76);
  box-shadow: 0 9px 0 rgba(15, 107, 91, 0.18);
}

.she-property-card-facade {
  position: relative;
  z-index: 1;
  padding: 12px;
  border: 1px solid rgba(20, 56, 69, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(20, 56, 69, 0.035) 34px 35px);
}

.she-property-card-facade::before,
.she-property-card-facade::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.16);
}

.she-property-card-facade::before {
  top: 20px;
  right: 18px;
  width: 38px;
  height: 8px;
  box-shadow:
    0 18px 0 rgba(214, 168, 79, 0.12),
    0 36px 0 rgba(214, 168, 79, 0.1);
}

.she-property-card-facade::after {
  top: 26px;
  left: 18px;
  width: 8px;
  height: 58px;
}

.she-property-card-window {
  position: relative !important;
  height: 218px !important;
  display: block !important;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 24px 24px 16px 16px;
  background: var(--she-soft);
  box-shadow: 0 16px 34px rgba(20, 56, 69, 0.12), inset 0 0 0 1px rgba(20, 56, 69, 0.08);
}

.she-property-architect-card--villa .she-property-card-window {
  border-radius: 34px 34px 18px 18px;
}

.she-property-architect-card--building .she-property-card-window {
  border-radius: 14px;
}

.she-property-card-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 50%, rgba(255, 255, 255, 0.16) 50% calc(50% + 2px), transparent calc(50% + 2px));
  pointer-events: none;
}

.she-property-card-window img,
body .she-home-properties .she-property-card-window img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover !important;
}

.she-property-card-window .she-placeholder,
.she-property-card-placeholder,
.she-property-card-placeholder .she-placeholder {
  height: 100% !important;
  min-height: 100% !important;
}

.she-property-card-base {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(20, 56, 69, 0.08);
  border-radius: 18px 18px 24px 24px;
  background: #ffffff;
}

.she-property-card-base::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 20px;
  left: 20px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.18), var(--she-gold), rgba(214, 168, 79, 0.18));
}

.she-property-card-base .she-property-card-actions {
  margin-top: auto;
}

.she-property-architect-card--building .she-property-card-base::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 18px;
  width: 42px;
  height: 30px;
  opacity: 0.16;
  background-image: linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0);
  background-size: 12px 10px;
  background-position: 0 0, 20px 0, 0 18px, 20px 18px;
  background-repeat: no-repeat;
}

body .she-home-properties .she-property-architect-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body .she-home-properties .she-property-architect-card .she-property-card-shell {
  border-color: rgba(20, 56, 69, 0.1) !important;
}

.she-opportunity-card {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 22px 42px rgba(20, 56, 69, 0.12));
}

.she-opportunity-card::before {
  display: none;
}

.she-opportunity-card-shell {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(214, 168, 79, 0.22);
  background:
    linear-gradient(150deg, #ffffff, #f7faf9),
    radial-gradient(circle at 16% 12%, rgba(214, 168, 79, 0.2), transparent 28%);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 8% 100%, 0 92%);
}

.she-opportunity-card--investment .she-opportunity-card-shell {
  border-color: rgba(15, 107, 91, 0.22);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
  background:
    linear-gradient(150deg, #ffffff, #eef3f1),
    radial-gradient(circle at 86% 16%, rgba(214, 168, 79, 0.16), transparent 30%);
}

.she-opportunity-blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 56, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 56, 69, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.she-opportunity-blueprint::before,
.she-opportunity-blueprint::after,
.she-opportunity-blueprint span {
  content: "";
  position: absolute;
  display: block;
}

.she-opportunity-card--project .she-opportunity-blueprint::before {
  top: 28px;
  left: 24px;
  width: 86px;
  height: 118px;
  opacity: 0.11;
  background:
    linear-gradient(var(--she-primary) 0 0) 0 38px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 0 76px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 26px 0 / 4px 100% no-repeat,
    linear-gradient(var(--she-primary) 0 0) 58px 0 / 4px 100% no-repeat,
    rgba(20, 56, 69, 0.18);
}

.she-opportunity-card--project .she-opportunity-blueprint::after {
  top: 34px;
  left: 118px;
  width: 34px;
  height: 86px;
  opacity: 0.13;
  background: rgba(20, 56, 69, 0.18);
}

.she-opportunity-card--investment .she-opportunity-blueprint::before {
  top: 30px;
  left: 30px;
  width: 130px;
  height: 96px;
  border: 2px solid rgba(15, 107, 91, 0.16);
  border-radius: 22px 8px 28px 10px;
  transform: rotate(-7deg);
}

.she-opportunity-card--investment .she-opportunity-blueprint::after {
  top: 62px;
  left: 72px;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.56);
  box-shadow:
    18px 18px 0 rgba(214, 168, 79, 0.28),
    -22px 34px 0 rgba(15, 107, 91, 0.18);
  transform: rotate(-7deg);
}

.she-opportunity-image {
  position: relative;
  height: 212px !important;
  margin-bottom: 14px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: var(--she-soft);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.72);
}

.she-opportunity-card--project .she-opportunity-image {
  clip-path: polygon(0 0, 88% 0, 100% 18%, 100% 100%, 0 100%);
}

.she-opportunity-card--investment .she-opportunity-image {
  clip-path: polygon(8% 0, 100% 0, 100% 86%, 88% 100%, 0 100%, 0 14%);
}

.she-opportunity-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent 45%),
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
}

.she-opportunity-image img,
body .she-home-opportunities .she-opportunity-image img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover !important;
}

.she-opportunity-placeholder,
.she-opportunity-placeholder .she-placeholder {
  height: 100% !important;
  min-height: 100% !important;
}

.she-opportunity-card__body {
  position: relative;
  z-index: 1;
  min-height: 340px;
  padding: 18px !important;
  border: 1px solid rgba(20, 56, 69, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.she-opportunity-card__body::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--she-gold), transparent);
}

body .she-home-opportunities .she-opportunity-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body .she-home-opportunities .she-opportunity-card-shell {
  border-radius: 0 !important;
}

body .she-home-opportunities .she-opportunity-card {
  min-width: calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  flex: 0 0 calc((100% - 48px) / 3) !important;
}

@media (max-width: 1024px) {
  body .she-home-opportunities .she-opportunity-card {
    min-width: calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
    flex-basis: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 720px) {
  .she-property-card-shell,
  .she-property-architect-card--villa .she-property-card-shell,
  .she-property-architect-card--building .she-property-card-shell {
    clip-path: polygon(0 10%, 50% 0, 100% 10%, 100% 100%, 0 100%);
  }

  .she-property-card-base,
  .she-opportunity-card__body {
    min-height: auto;
  }

  body .she-home-opportunities .she-opportunity-card {
    min-width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

/* Homepage architectural card model overrides */
body .she-home-properties {
  width: 100%;
  max-width: 1240px !important;
  padding-inline: 18px !important;
}

body .she-home-properties .she-home-properties-grid {
  display: grid !important;
  width: 100% !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

body .she-home-properties .she-property-architect-card {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 24px 34px rgba(20, 56, 69, 0.13)) !important;
}

body .she-home-properties .she-property-architect-card::before {
  content: "";
  position: absolute;
  inset: 22px 18px -8px;
  z-index: -1;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 107, 91, 0.12), rgba(214, 168, 79, 0.12));
  filter: blur(18px);
}

body .she-home-properties .she-property-architect-card:hover {
  transform: translateY(-7px) !important;
  filter: drop-shadow(0 32px 48px rgba(20, 56, 69, 0.18)) !important;
}

body .she-home-properties .she-property-card-shell {
  position: relative !important;
  display: flex !important;
  min-height: 100% !important;
  flex-direction: column !important;
  padding: 54px 14px 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 56, 69, 0.11) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.98)),
    radial-gradient(circle at 12% 10%, rgba(214, 168, 79, 0.2), transparent 32%) !important;
  clip-path: polygon(0 17%, 50% 0, 100% 17%, 100% 100%, 0 100%) !important;
  isolation: isolate;
}

body .she-home-properties .she-property-architect-card--villa .she-property-card-shell {
  padding-top: 48px !important;
  clip-path: polygon(0 13%, 17% 5%, 83% 5%, 100% 13%, 100% 100%, 0 100%) !important;
}

body .she-home-properties .she-property-architect-card--building .she-property-card-shell {
  padding-top: 42px !important;
  clip-path: polygon(0 10%, 10% 10%, 10% 3%, 34% 3%, 34% 0, 66% 0, 66% 3%, 90% 3%, 90% 10%, 100% 10%, 100% 100%, 0 100%) !important;
}

body .she-home-properties .she-property-card-shell::before,
body .she-home-properties .she-property-card-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body .she-home-properties .she-property-card-shell::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(20, 56, 69, 0.035) 16% calc(16% + 1px), transparent calc(16% + 1px) 84%, rgba(20, 56, 69, 0.035) 84% calc(84% + 1px), transparent calc(84% + 1px)),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(15, 107, 91, 0.035) 44px 45px);
}

body .she-home-properties .she-property-card-shell::after {
  top: 76px;
  left: 16px;
  width: 34px;
  height: 112px;
  opacity: 0.12;
  border-radius: 18px 18px 6px 6px;
  background:
    linear-gradient(var(--she-primary) 0 0) 8px 18px / 18px 3px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 8px 42px / 18px 3px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 8px 66px / 18px 3px no-repeat,
    rgba(20, 56, 69, 0.24);
}

body .she-home-properties .she-property-architect-card--building .she-property-card-shell::after {
  top: 56px;
  left: 14px;
  width: 50px;
  height: 156px;
  border-radius: 8px;
  background:
    linear-gradient(var(--she-primary) 0 0) 9px 18px / 10px 8px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 30px 18px / 10px 8px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 9px 48px / 10px 8px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 30px 48px / 10px 8px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 9px 78px / 10px 8px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 30px 78px / 10px 8px no-repeat,
    rgba(20, 56, 69, 0.22);
}

body .she-home-properties .she-property-card-roof {
  position: absolute !important;
  inset: 0 0 auto !important;
  height: 80px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

body .she-home-properties .she-property-card-roof::before {
  content: "" !important;
  position: absolute !important;
  top: 23px !important;
  right: 9% !important;
  width: 82% !important;
  height: 7px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.5), var(--she-gold), rgba(214, 168, 79, 0.5)) !important;
  box-shadow: 0 13px 0 rgba(20, 56, 69, 0.08) !important;
  transform: skewY(-7deg) !important;
}

body .she-home-properties .she-property-card-roof::after {
  content: "" !important;
  position: absolute !important;
  top: 17px !important;
  left: 18% !important;
  width: 18px !important;
  height: 30px !important;
  border-radius: 6px 6px 0 0 !important;
  background: var(--she-primary) !important;
}

body .she-home-properties .she-property-card-roof span {
  position: absolute !important;
  top: 42px !important;
  right: 50% !important;
  display: block !important;
  width: 46px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: rgba(15, 107, 91, 0.38) !important;
  transform: translateX(50%) !important;
}

body .she-home-properties .she-property-architect-card--villa .she-property-card-roof::before {
  top: 28px !important;
  right: 15% !important;
  width: 70% !important;
  transform: none !important;
}

body .she-home-properties .she-property-architect-card--villa .she-property-card-roof span {
  top: 48px !important;
  width: 62% !important;
  box-shadow: 0 8px 0 rgba(214, 168, 79, 0.28), 0 16px 0 rgba(214, 168, 79, 0.15) !important;
}

body .she-home-properties .she-property-architect-card--building .she-property-card-roof::before {
  top: 22px !important;
  right: 12% !important;
  width: 76% !important;
  background: rgba(20, 56, 69, 0.86) !important;
  transform: none !important;
}

body .she-home-properties .she-property-architect-card--building .she-property-card-roof::after {
  top: 36px !important;
  right: 24% !important;
  left: auto !important;
  width: 52% !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: var(--she-gold) !important;
}

body .she-home-properties .she-property-card-facade {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  min-height: 100% !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: 12px !important;
  border: 1px solid rgba(20, 56, 69, 0.09) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(20, 56, 69, 0.035) 34px 35px) !important;
}

body .she-home-properties .she-property-card-window {
  position: relative !important;
  display: block !important;
  height: 222px !important;
  min-height: 222px !important;
  overflow: hidden !important;
  border: 6px solid #fff !important;
  border-radius: 26px 26px 16px 16px !important;
  background: var(--she-soft) !important;
  box-shadow: 0 16px 34px rgba(20, 56, 69, 0.12), inset 0 0 0 1px rgba(20, 56, 69, 0.08) !important;
}

body .she-home-properties .she-property-card-window::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 2px, transparent 2px 50%, rgba(255, 255, 255, 0.16) 50% calc(50% + 2px), transparent calc(50% + 2px)) !important;
}

body .she-home-properties .she-property-card-window img,
body .she-home-properties .she-property-card-window .she-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

body .she-home-properties .she-property-card-base {
  position: relative !important;
  display: flex !important;
  min-height: 320px !important;
  flex: 1 !important;
  flex-direction: column !important;
  margin-top: 12px !important;
  padding: 18px !important;
  border: 1px solid rgba(20, 56, 69, 0.08) !important;
  border-radius: 18px 18px 24px 24px !important;
  background: #fff !important;
}

body .she-home-properties .she-property-card-base::before {
  content: "" !important;
  position: absolute !important;
  top: -7px !important;
  right: 20px !important;
  left: 20px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(214, 168, 79, 0.18), var(--she-gold), rgba(214, 168, 79, 0.18)) !important;
}

body .she-home-properties .she-property-card-actions {
  margin-top: auto !important;
}

body .she-home-opportunities {
  width: 100%;
  max-width: 1240px !important;
  padding-inline: 18px !important;
}

body .she-home-opportunities .she-opportunities-track {
  display: flex !important;
  gap: 26px !important;
  align-items: stretch !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 8px 2px 22px !important;
  scroll-snap-type: x mandatory !important;
}

body .she-home-opportunities .she-opportunity-card {
  position: relative !important;
  display: block !important;
  min-width: calc((100% - 52px) / 3) !important;
  max-width: calc((100% - 52px) / 3) !important;
  flex: 0 0 calc((100% - 52px) / 3) !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 24px 38px rgba(20, 56, 69, 0.14)) !important;
  scroll-snap-align: start !important;
}

body .she-home-opportunities .she-opportunity-card-shell {
  position: relative !important;
  display: flex !important;
  min-height: 100% !important;
  flex-direction: column !important;
  overflow: hidden !important;
  padding: 16px !important;
  border: 1px solid rgba(214, 168, 79, 0.24) !important;
  background:
    linear-gradient(150deg, #ffffff, #f7faf9),
    radial-gradient(circle at 16% 12%, rgba(214, 168, 79, 0.2), transparent 28%) !important;
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 8% 100%, 0 92%) !important;
  isolation: isolate;
}

body .she-home-opportunities .she-opportunity-card--investment .she-opportunity-card-shell {
  border-color: rgba(15, 107, 91, 0.24) !important;
  background:
    linear-gradient(150deg, #ffffff, #eef3f1),
    radial-gradient(circle at 86% 16%, rgba(214, 168, 79, 0.16), transparent 30%) !important;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%) !important;
}

body .she-home-opportunities .she-opportunity-blueprint {
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  opacity: 0.85 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(20, 56, 69, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 56, 69, 0.045) 1px, transparent 1px) !important;
  background-size: 22px 22px !important;
}

body .she-home-opportunities .she-opportunity-blueprint::before,
body .she-home-opportunities .she-opportunity-blueprint::after,
body .she-home-opportunities .she-opportunity-blueprint span {
  content: "" !important;
  position: absolute !important;
  display: block !important;
}

body .she-home-opportunities .she-opportunity-card--project .she-opportunity-blueprint::before {
  top: 28px !important;
  left: 24px !important;
  width: 92px !important;
  height: 126px !important;
  opacity: 0.13 !important;
  background:
    linear-gradient(var(--she-primary) 0 0) 0 38px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 0 76px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 27px 0 / 4px 100% no-repeat,
    linear-gradient(var(--she-primary) 0 0) 62px 0 / 4px 100% no-repeat,
    rgba(20, 56, 69, 0.2) !important;
}

body .she-home-opportunities .she-opportunity-card--project .she-opportunity-blueprint::after {
  top: 36px !important;
  left: 126px !important;
  width: 38px !important;
  height: 92px !important;
  opacity: 0.14 !important;
  background: rgba(20, 56, 69, 0.22) !important;
}

body .she-home-opportunities .she-opportunity-card--investment .she-opportunity-blueprint::before {
  top: 30px !important;
  left: 30px !important;
  width: 132px !important;
  height: 98px !important;
  border: 2px solid rgba(15, 107, 91, 0.18) !important;
  border-radius: 22px 8px 30px 10px !important;
  transform: rotate(-7deg) !important;
}

body .she-home-opportunities .she-opportunity-card--investment .she-opportunity-blueprint::after {
  top: 62px !important;
  left: 72px !important;
  width: 64px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: rgba(214, 168, 79, 0.58) !important;
  box-shadow: 18px 18px 0 rgba(214, 168, 79, 0.28), -22px 34px 0 rgba(15, 107, 91, 0.2) !important;
  transform: rotate(-7deg) !important;
}

body .she-home-opportunities .she-opportunity-image {
  position: relative !important;
  display: block !important;
  height: 214px !important;
  min-height: 214px !important;
  margin-bottom: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(20, 56, 69, 0.1) !important;
  border-radius: 22px !important;
  background: var(--she-soft) !important;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.72) !important;
}

body .she-home-opportunities .she-opportunity-card--project .she-opportunity-image {
  clip-path: polygon(0 0, 88% 0, 100% 18%, 100% 100%, 0 100%) !important;
}

body .she-home-opportunities .she-opportunity-card--investment .she-opportunity-image {
  clip-path: polygon(8% 0, 100% 0, 100% 86%, 88% 100%, 0 100%, 0 14%) !important;
}

body .she-home-opportunities .she-opportunity-image img,
body .she-home-opportunities .she-opportunity-image .she-placeholder {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
}

body .she-home-opportunities .she-opportunity-card__body {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  min-height: 326px !important;
  flex: 1 !important;
  flex-direction: column !important;
  padding: 18px !important;
  border: 1px solid rgba(20, 56, 69, 0.08) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.94) !important;
}

body .she-home-opportunities .she-opportunity-card__body::before {
  content: "" !important;
  position: absolute !important;
  top: -5px !important;
  right: 18px !important;
  left: 18px !important;
  height: 3px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, var(--she-gold), transparent) !important;
}

body .she-home-opportunities .she-opportunity-actions {
  margin-top: auto !important;
}

@media (max-width: 1024px) {
  body .she-home-properties .she-home-properties-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body .she-home-opportunities .she-opportunity-card {
    min-width: calc((100% - 26px) / 2) !important;
    max-width: calc((100% - 26px) / 2) !important;
    flex-basis: calc((100% - 26px) / 2) !important;
  }
}

@media (max-width: 720px) {
  body .she-home-properties,
  body .she-home-opportunities {
    padding-inline: 12px !important;
  }

  body .she-home-properties .she-home-properties-grid {
    grid-template-columns: 1fr !important;
  }

  body .she-home-properties .she-property-card-shell,
  body .she-home-properties .she-property-architect-card--villa .she-property-card-shell,
  body .she-home-properties .she-property-architect-card--building .she-property-card-shell {
    padding-top: 50px !important;
    clip-path: polygon(0 12%, 50% 0, 100% 12%, 100% 100%, 0 100%) !important;
  }

  body .she-home-properties .she-property-card-base,
  body .she-home-opportunities .she-opportunity-card__body {
    min-height: auto !important;
  }

  body .she-home-opportunities .she-opportunity-card {
    min-width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}

/* Premium single property page */
.she-single-property {
  direction: rtl;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 32px 18px 48px !important;
  color: var(--she-text);
  background: #F4F5F7;
  box-shadow: 0 0 0 100vmax #F4F5F7;
  clip-path: inset(0 -100vmax);
}

.she-single-property *,
.she-single-property *::before,
.she-single-property *::after {
  box-sizing: border-box;
}

.she-single-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.she-single-summary,
.she-single-gallery,
.she-single-section {
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(20, 56, 69, 0.08);
}

.she-single-summary {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
}

.she-single-summary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  opacity: 0.45;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), transparent 62%),
    repeating-linear-gradient(90deg, rgba(20, 56, 69, 0.055) 0 1px, transparent 1px 22px);
  pointer-events: none;
}

.she-single-badges,
.she-single-actions,
.she-single-location,
.she-contact-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-single-badges {
  margin-bottom: 16px;
}

.she-single-title {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--she-primary);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.she-single-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(214, 168, 79, 0.34);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(214, 168, 79, 0.12), rgba(255, 255, 255, 0.96));
}

.she-single-price strong {
  color: var(--she-primary);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 950;
  line-height: 1.2;
}

.she-single-price span,
.she-single-owner span,
.she-section-heading span {
  color: var(--she-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.she-single-location {
  margin-bottom: 18px;
}

.she-single-location span,
.she-features-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 999px;
  background: var(--she-soft);
  color: var(--she-primary);
  font-size: 0.93rem;
  font-weight: 850;
}

.she-single-excerpt {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--she-muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.she-single-owner {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 18px;
  background: #fbfdfc;
}

.she-single-owner strong {
  color: var(--she-primary);
  font-size: 1.02rem;
}

.she-single-actions {
  margin-top: auto;
}

.she-single-actions .she-button,
.she-contact-box__actions .she-button {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.she-single-gallery {
  overflow: hidden;
  padding: 14px;
}

.she-single-gallery__main {
  height: 430px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--she-soft);
}

.she-single-gallery__main img,
.she-single-gallery__strip img,
.she-single-gallery-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.she-single-gallery__main .she-placeholder {
  height: 100%;
  min-height: 100%;
}

.she-single-gallery__strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.she-single-gallery__strip figure,
.she-single-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--she-soft);
}

.she-single-gallery__strip figure {
  height: 92px;
}

.she-single-section {
  margin-top: 24px;
  padding: 28px;
}

.she-section-heading {
  margin-bottom: 20px;
}

.she-section-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--she-secondary);
}

.she-section-heading span::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: var(--she-gold);
}

.she-section-heading h2 {
  margin: 7px 0 0;
  color: var(--she-primary);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.3;
  font-weight: 950;
}

.she-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.she-info-card {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(145deg, #fff, #f8fbfa),
    radial-gradient(circle at 16% 14%, rgba(214, 168, 79, 0.15), transparent 34%);
}

.she-info-card::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 16px;
  width: 34px;
  height: 24px;
  opacity: 0.12;
  background-image: linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0);
  background-size: 10px 8px;
  background-position: 0 0, 18px 0, 0 16px, 18px 16px;
  background-repeat: no-repeat;
}

.she-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--she-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.she-info-card strong {
  display: block;
  color: var(--she-primary);
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 950;
}

.she-single-description {
  color: var(--she-text);
  font-size: 1.02rem;
  line-height: 2;
}

.she-single-description p:last-child {
  margin-bottom: 0;
}

.she-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.she-features-list span {
  background: linear-gradient(135deg, #EEF3F1, #fff);
}

.she-single-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.she-single-gallery-grid figure {
  height: 220px;
  border-radius: 20px;
}

.she-map-box {
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: var(--she-soft);
}

.she-map-box iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.she-map-box .she-placeholder {
  min-height: 360px;
}

.she-contact-box {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.82)),
    radial-gradient(circle at 8% 10%, rgba(214, 168, 79, 0.16), transparent 32%);
}

.she-contact-box__actions {
  margin-bottom: 22px;
}

.she-contact-box .she-contact-form {
  padding: 20px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: #fff;
}

.she-contact-box .she-contact-form input,
.she-contact-box .she-contact-form textarea {
  border-radius: 16px;
}

.she-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1024px) {
  .she-single-hero {
    grid-template-columns: 1fr;
  }

  .she-single-summary {
    min-height: auto;
  }

  .she-info-grid,
  .she-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-single-property {
    padding: 18px 12px 34px !important;
  }

  .she-single-summary,
  .she-single-section {
    padding: 22px;
    border-radius: 24px;
  }

  .she-single-gallery {
    border-radius: 24px;
  }

  .she-single-gallery__main {
    height: 300px;
  }

  .she-single-gallery__strip,
  .she-info-grid,
  .she-single-gallery-grid,
  .she-related-grid {
    grid-template-columns: 1fr;
  }

  .she-single-gallery__strip figure,
  .she-single-gallery-grid figure {
    height: 210px;
  }

  .she-single-actions .she-button,
  .she-contact-box__actions .she-button {
    width: 100%;
  }
}

/* Premium single project page */
.she-single-project {
  direction: rtl;
  max-width: 1240px;
  margin: 0 auto;
  padding: 32px 18px 48px;
  color: var(--she-text);
  background: #F4F5F7;
  box-shadow: 0 0 0 100vmax #F4F5F7;
  clip-path: inset(0 -100vmax);
}

.she-single-project *,
.she-single-project *::before,
.she-single-project *::after {
  box-sizing: border-box;
}

.she-project-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.she-project-visual,
.she-project-summary,
.she-project-section {
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 56, 69, 0.08);
}

.she-project-visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  padding: 16px;
  background:
    linear-gradient(145deg, #fff, #eef3f1),
    radial-gradient(circle at 14% 12%, rgba(214, 168, 79, 0.18), transparent 32%);
}

.she-project-visual__frame {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 508px;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.12);
  border-radius: 24px;
  background: var(--she-soft);
  clip-path: polygon(0 0, 88% 0, 100% 13%, 100% 100%, 7% 100%, 0 92%);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.65);
}

.she-project-visual__frame img,
.she-project-visual__frame .she-placeholder {
  width: 100%;
  height: 100%;
  min-height: 508px;
  display: block;
  object-fit: cover;
}

.she-project-visual__blueprint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
  background-image:
    linear-gradient(rgba(20, 56, 69, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 56, 69, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.she-project-visual__blueprint::before,
.she-project-visual__blueprint::after,
.she-project-visual__blueprint span {
  content: "";
  position: absolute;
  display: block;
}

.she-project-visual__blueprint::before {
  top: 34px;
  left: 34px;
  width: 116px;
  height: 156px;
  opacity: 0.15;
  background:
    linear-gradient(var(--she-primary) 0 0) 0 44px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 0 88px / 100% 4px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 34px 0 / 4px 100% no-repeat,
    linear-gradient(var(--she-primary) 0 0) 76px 0 / 4px 100% no-repeat,
    rgba(20, 56, 69, 0.2);
}

.she-project-visual__blueprint::after {
  right: 34px;
  bottom: 32px;
  width: 180px;
  height: 3px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.72);
  box-shadow:
    0 -18px 0 rgba(214, 168, 79, 0.28),
    -46px -36px 0 rgba(15, 107, 91, 0.16);
}

.she-project-summary {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 34px;
}

.she-project-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.13), transparent 38%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(20, 56, 69, 0.035) 42px 43px);
}

.she-project-summary > * {
  position: relative;
  z-index: 1;
}

.she-project-status,
.she-project-summary__meta,
.she-project-summary__actions,
.she-project-inquiry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-project-status {
  margin-bottom: 16px;
}

.she-project-status span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.16);
  color: var(--she-primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.she-project-status span:first-child {
  background: var(--she-secondary);
  color: #fff;
}

.she-project-summary h1 {
  margin: 0 0 18px;
  color: var(--she-primary);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: 0;
}

.she-project-summary__meta {
  margin-bottom: 18px;
}

.she-project-summary__meta span,
.she-project-unit-card,
.she-project-info-card {
  border: 1px solid rgba(20, 56, 69, 0.1);
  background: #fbfdfc;
}

.she-project-summary__meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--she-primary);
  font-weight: 850;
}

.she-project-price {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(214, 168, 79, 0.36);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(214, 168, 79, 0.14), rgba(255, 255, 255, 0.95));
}

.she-project-price span,
.she-project-summary__facts span,
.she-project-info-card span,
.she-project-unit-card span,
.she-project-muted {
  color: var(--she-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.she-project-price strong {
  display: block;
  color: var(--she-primary);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 950;
  line-height: 1.25;
}

.she-project-summary__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.she-project-summary__facts div {
  padding: 14px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 18px;
  background: #fff;
}

.she-project-summary__facts strong {
  display: block;
  margin-top: 5px;
  color: var(--she-primary);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 950;
}

.she-project-summary__actions,
.she-project-inquiry__actions {
  margin-top: auto;
}

.she-project-summary__actions .she-button,
.she-project-inquiry__actions .she-button {
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.she-project-section {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 28px;
}

.she-project-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 118px;
  height: 118px;
  opacity: 0.18;
  pointer-events: none;
  background:
    linear-gradient(var(--she-primary) 0 0) 20px 28px / 70px 2px no-repeat,
    linear-gradient(var(--she-primary) 0 0) 20px 52px / 90px 2px no-repeat,
    linear-gradient(90deg, rgba(214, 168, 79, 0.7), transparent);
}

.she-project-section > * {
  position: relative;
  z-index: 1;
}

.she-project-overview-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.she-project-info-card,
.she-project-unit-card {
  position: relative;
  min-height: 112px;
  padding: 18px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(145deg, #fff, #f8fbfa),
    radial-gradient(circle at 14% 12%, rgba(214, 168, 79, 0.14), transparent 34%);
}

.she-project-info-card::after,
.she-project-unit-card::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 16px;
  width: 42px;
  height: 30px;
  opacity: 0.12;
  background-image: linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0), linear-gradient(var(--she-primary) 0 0);
  background-size: 12px 10px;
  background-position: 0 0, 20px 0, 0 18px, 20px 18px;
  background-repeat: no-repeat;
}

.she-project-info-card span,
.she-project-unit-card span {
  display: block;
  margin-bottom: 10px;
}

.she-project-info-card strong,
.she-project-unit-card strong {
  display: block;
  color: var(--she-primary);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 950;
}

.she-project-description {
  color: var(--she-text);
  font-size: 1.02rem;
  line-height: 2;
}

.she-project-description p:last-child {
  margin-bottom: 0;
}

.she-project-units-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.she-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.she-project-gallery figure,
.she-project-gallery__placeholder {
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background: var(--she-soft);
}

.she-project-gallery figure:first-child {
  grid-column: span 2;
  min-height: 330px;
}

.she-project-gallery img,
.she-project-gallery .she-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.she-project-gallery__placeholder {
  grid-column: 1 / -1;
}

.she-project-map {
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: var(--she-soft);
}

.she-project-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.she-project-inquiry {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.88)),
    radial-gradient(circle at 8% 12%, rgba(214, 168, 79, 0.16), transparent 32%);
}

.she-project-inquiry__form {
  padding: 20px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: #fff;
}

.she-project-inquiry__actions {
  margin-top: 18px;
}

.she-related-projects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.she-related-projects .she-opportunity-card {
  min-width: 0 !important;
  max-width: none !important;
  flex: initial !important;
}

.she-related-projects .she-opportunity-card__body {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .she-project-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .she-project-hero {
    grid-template-columns: 1fr;
  }

  .she-project-summary,
  .she-project-visual {
    min-height: auto;
  }

  .she-project-visual__frame,
  .she-project-visual__frame img,
  .she-project-visual__frame .she-placeholder {
    min-height: 420px;
  }

  .she-project-units-grid,
  .she-related-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-single-project {
    padding: 18px 12px 34px;
  }

  .she-project-summary,
  .she-project-section,
  .she-project-visual {
    border-radius: 24px;
  }

  .she-project-summary,
  .she-project-section {
    padding: 22px;
  }

  .she-project-summary__facts,
  .she-project-overview-grid,
  .she-project-units-grid,
  .she-project-gallery,
  .she-related-projects {
    grid-template-columns: 1fr;
  }

  .she-project-visual__frame,
  .she-project-visual__frame img,
  .she-project-visual__frame .she-placeholder {
    min-height: 310px;
  }

  .she-project-gallery figure:first-child {
    grid-column: auto;
    min-height: 240px;
  }

  .she-project-summary__actions .she-button,
  .she-project-inquiry__actions .she-button {
    width: 100%;
  }
}

.she-single-investment {
  --she-primary: #143845;
  --she-secondary: #0F6B5B;
  --she-gold: #D6A84F;
  --she-bg: #F4F5F7;
  --she-white: #FFFFFF;
  --she-text: #1F2A2A;
  --she-muted: #6B7A75;
  --she-border: rgba(20, 56, 69, 0.12);
  --she-soft: #EEF3F1;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 56px;
  direction: rtl;
  color: var(--she-text);
  background: var(--she-bg);
  box-shadow: 0 0 0 100vmax var(--she-bg);
  clip-path: inset(0 -100vmax);
}

.she-single-investment *,
.she-single-investment *::before,
.she-single-investment *::after {
  box-sizing: border-box;
}

.she-investment-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.she-investment-summary,
.she-investment-visual,
.she-investment-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 56, 69, 0.08);
}

.she-investment-summary {
  min-height: 560px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.86)),
    radial-gradient(circle at 12% 18%, rgba(214, 168, 79, 0.2), transparent 34%);
}

.she-investment-summary::before,
.she-investment-visual::before,
.she-investment-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 56, 69, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 56, 69, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, #000 0%, transparent 54%);
}

.she-investment-summary::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 30px;
  width: 148px;
  height: 82px;
  border-left: 3px solid rgba(214, 168, 79, 0.68);
  border-bottom: 3px solid rgba(214, 168, 79, 0.68);
  border-radius: 0 0 0 20px;
  opacity: 0.48;
  transform: skewX(-10deg);
}

.she-investment-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.she-investment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(214, 168, 79, 0.28);
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.13);
  color: #8b6420;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.she-investment-summary h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--she-primary);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.she-investment-summary__location {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--she-muted);
  font-size: 15px;
  font-weight: 700;
}

.she-investment-summary__location span,
.she-investment-summary__facts div {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(20, 56, 69, 0.09);
  background: rgba(255, 255, 255, 0.72);
}

.she-investment-summary__location span {
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
}

.she-investment-value {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 500px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(20, 56, 69, 0.96), rgba(15, 107, 91, 0.93)),
    radial-gradient(circle at 12% 16%, rgba(214, 168, 79, 0.35), transparent 36%);
  color: #fff;
  box-shadow: 0 18px 42px rgba(20, 56, 69, 0.18);
}

.she-investment-value::before {
  content: "";
  position: absolute;
  inset-inline-start: 20px;
  top: 18px;
  width: 92px;
  height: 36px;
  border-top: 2px solid rgba(214, 168, 79, 0.76);
  border-left: 2px solid rgba(214, 168, 79, 0.76);
  border-radius: 18px 0 0;
  opacity: 0.72;
}

.she-investment-value span,
.she-investment-value small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.she-investment-value strong {
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.1;
}

.she-investment-summary__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px;
}

.she-investment-summary__facts div {
  min-height: 86px;
  padding: 15px;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.she-investment-summary__facts span {
  color: var(--she-muted);
  font-size: 12px;
  font-weight: 800;
}

.she-investment-summary__facts strong {
  color: var(--she-primary);
  font-size: 15px;
  font-weight: 900;
}

.she-investment-summary__actions,
.she-investment-inquiry__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.she-investment-visual {
  min-height: 560px;
  padding: 22px;
  background:
    linear-gradient(160deg, #fff 0%, #eef3f1 100%),
    radial-gradient(circle at 78% 16%, rgba(214, 168, 79, 0.24), transparent 28%);
}

.she-investment-visual__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 388px;
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 28px 28px 18px 18px;
  background: linear-gradient(135deg, #EEF3F1, #FFFFFF);
  clip-path: polygon(0 9%, 11% 0, 100% 0, 100% 91%, 89% 100%, 0 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.she-investment-visual__frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(214, 168, 79, 0.42);
  border-radius: 22px 22px 14px 14px;
  clip-path: polygon(0 12%, 11% 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.she-investment-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(45deg, transparent 47%, rgba(214, 168, 79, 0.3) 48%, rgba(214, 168, 79, 0.3) 51%, transparent 52%);
  mix-blend-mode: screen;
}

.she-investment-visual__frame img,
.she-investment-visual__frame .she-placeholder {
  width: 100%;
  min-height: 388px;
  height: 100%;
  display: block;
  object-fit: cover;
}

.she-investment-visual__placeholder {
  position: relative;
  min-height: 388px;
  background:
    radial-gradient(circle at 25% 18%, rgba(214, 168, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #EEF3F1, #FFFFFF);
}

.she-investment-visual__placeholder::before {
  content: "";
  position: absolute;
  inset: 42px 38px;
  z-index: 3;
  border: 2px solid rgba(15, 107, 91, 0.26);
  border-radius: 18px;
  clip-path: polygon(5% 20%, 39% 5%, 72% 18%, 95% 46%, 70% 88%, 24% 78%);
}

.she-investment-visual__placeholder::after {
  content: "";
  position: absolute;
  inset-inline-start: 22%;
  top: 28%;
  z-index: 3;
  width: 56%;
  height: 42%;
  border-top: 3px solid rgba(214, 168, 79, 0.72);
  border-right: 3px solid rgba(214, 168, 79, 0.72);
  transform: skewY(-10deg);
  opacity: 0.8;
}

.she-investment-visual__pin {
  position: absolute;
  z-index: 4;
  left: 32px;
  top: 32px;
  width: 22px;
  height: 22px;
  border: 5px solid rgba(214, 168, 79, 0.92);
  border-radius: 50% 50% 50% 0;
  background: #fff;
  transform: rotate(-45deg);
  box-shadow: 0 10px 24px rgba(20, 56, 69, 0.18);
}

.she-investment-visual__plot {
  position: relative;
  z-index: 1;
  min-height: 120px;
  margin-top: 18px;
  border: 1px dashed rgba(20, 56, 69, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.16), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(20, 56, 69, 0.06) 28px 30px);
}

.she-investment-visual__plot span {
  position: absolute;
  inset: 25px 34px 28px 42px;
  border: 2px solid rgba(15, 107, 91, 0.52);
  border-radius: 18px;
  clip-path: polygon(0 24%, 26% 0, 100% 13%, 82% 100%, 14% 82%);
}

.she-investment-section {
  margin-bottom: 24px;
  padding: 28px;
}

.she-investment-section .she-section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.she-investment-section .she-section-heading span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #9a7024;
  font-size: 13px;
  font-weight: 900;
}

.she-investment-section .she-section-heading h2 {
  margin: 0;
  color: var(--she-primary);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  line-height: 1.25;
}

.she-investment-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.she-investment-info-card {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #fff, rgba(238, 243, 241, 0.72)),
    linear-gradient(90deg, rgba(214, 168, 79, 0.35), transparent);
  box-shadow: 0 14px 34px rgba(20, 56, 69, 0.06);
}

.she-investment-info-card--highlight {
  border-color: rgba(214, 168, 79, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 252, 244, 0.98), #fff),
    radial-gradient(circle at 15% 20%, rgba(214, 168, 79, 0.24), transparent 34%);
}

.she-investment-info-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--she-muted);
  font-size: 13px;
  font-weight: 800;
}

.she-investment-info-card strong {
  display: block;
  color: var(--she-primary);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.she-investment-description {
  position: relative;
  z-index: 1;
  color: #334341;
  font-size: 17px;
  line-height: 1.95;
}

.she-investment-description p {
  margin: 0 0 14px;
}

.she-strength-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.she-strength-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px 10px 18px;
  border: 1px solid rgba(214, 168, 79, 0.32);
  border-radius: 999px;
  background: rgba(214, 168, 79, 0.11);
  color: var(--she-primary);
  font-size: 14px;
  font-weight: 850;
}

.she-strength-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--she-gold);
  box-shadow: 0 0 0 5px rgba(214, 168, 79, 0.14);
}

.she-investment-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.she-investment-gallery figure,
.she-investment-gallery__placeholder {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: var(--she-soft);
}

.she-investment-gallery figure:first-child {
  grid-column: span 2;
  min-height: 340px;
}

.she-investment-gallery img,
.she-investment-gallery .she-placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.she-investment-gallery__placeholder {
  grid-column: 1 / -1;
}

.she-investment-gallery__placeholder::before {
  content: "";
  position: absolute;
  inset: 30px;
  z-index: 2;
  border: 2px solid rgba(15, 107, 91, 0.22);
  border-radius: 24px;
  clip-path: polygon(0 22%, 35% 0, 100% 24%, 86% 100%, 18% 80%);
  pointer-events: none;
}

.she-investment-map {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 360px;
  margin-bottom: 16px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: var(--she-soft);
}

.she-investment-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
}

.she-investment-inquiry {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 241, 0.88)),
    radial-gradient(circle at 12% 18%, rgba(214, 168, 79, 0.18), transparent 34%);
}

.she-investment-inquiry__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.she-investment-inquiry .she-contact-box,
.she-investment-inquiry__form {
  padding: 20px;
  border: 1px solid rgba(20, 56, 69, 0.1);
  border-radius: 22px;
  background: #fff;
}

.she-investment-inquiry .she-contact-box h3 {
  margin: 0 0 10px;
  color: var(--she-primary);
  font-size: 20px;
  font-weight: 900;
}

.she-investment-inquiry .she-contact-box p {
  margin: 0 0 16px;
  color: var(--she-muted);
  font-size: 15px;
  line-height: 1.7;
}

.she-investment-inquiry__form .she-textarea {
  min-height: 132px;
}

.she-related-investments {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.she-related-investments .she-opportunity-card {
  min-width: 0 !important;
  max-width: none !important;
  flex: initial !important;
}

.she-related-investments .she-opportunity-card__body {
  min-height: 300px;
}

@media (max-width: 1180px) {
  .she-investment-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .she-investment-hero,
  .she-investment-inquiry__layout {
    grid-template-columns: 1fr;
  }

  .she-investment-summary,
  .she-investment-visual {
    min-height: auto;
  }

  .she-investment-visual__frame,
  .she-investment-visual__frame img,
  .she-investment-visual__frame .she-placeholder {
    min-height: 420px;
  }

  .she-investment-gallery,
  .she-related-investments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .she-single-investment {
    width: min(100% - 24px, 1240px);
    padding: 18px 0 34px;
  }

  .she-investment-summary,
  .she-investment-section,
  .she-investment-visual {
    border-radius: 24px;
  }

  .she-investment-summary,
  .she-investment-section {
    padding: 22px;
  }

  .she-investment-summary__facts,
  .she-investment-overview-grid,
  .she-investment-gallery,
  .she-related-investments {
    grid-template-columns: 1fr;
  }

  .she-investment-visual {
    padding: 16px;
  }

  .she-investment-visual__frame,
  .she-investment-visual__frame img,
  .she-investment-visual__frame .she-placeholder,
  .she-investment-visual__placeholder {
    min-height: 310px;
  }

  .she-investment-gallery figure:first-child {
    grid-column: auto;
    min-height: 240px;
  }

  .she-investment-summary__actions .she-button,
  .she-investment-inquiry__actions .she-button {
    width: 100%;
  }
}
