:root {
  --green: #243d1e;
  --deep: #1b3017;
  --gold: #c1a66f;
  --gold-light: #e1cc9f;
  --ink: #26332c;
  --muted: #71786f;
  --line: #e6e9e2;
  --paper: #f6f7f3
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px
}

body {
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: #fff
}

h1, h2, h3, h4, .brand {
  font-family: Urbanist, Arial, sans-serif
}

h2 {
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.2px;
  line-height: 1.12
}

h3 {
  font-size: 26px;
  font-weight: 600
}

p {
  line-height: 1.75
}

a {
  color: inherit
}

a:hover {
  color: var(--gold);
  text-decoration: none
}

button, a, input, select, textarea {
  outline-offset: 5px
}

button:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold)
}

button {
  font-family: inherit
}

button, .btn {
  touch-action: manipulation
}

.container {
  width: 100%;
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden
}

.icon, .brand-mark {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 13px 25px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: background .2s, transform .2s, color .2s
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  border: 1px solid var(--gold)
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--deep)
}

.btn-green {
  background: var(--green);
  color: white;
  border-color: var(--green)
}

.btn-green:hover {
  background: var(--deep);
  color: white
}

.btn-outline-light {
  border-color: #ffffff70;
  color: #fff;
  background: #ffffff05
}

.topbar {
  background: var(--deep);
  color: #dce1d8;
  font-size: 12px;
  padding: 10px 0;
  letter-spacing: .2px;
  border-bottom: 1px solid #ffffff15
}

.top-dot {
  padding: 0 12px;
  color: var(--gold)
}

.site-header {
  background: var(--green);
  color: white;
  position: sticky;
  top: 0;
  z-index: 30
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -1.6px;
  line-height: 1
}

.brand:hover {
  color: white
}

.brand-mark {
  width: 40px;
  height: 45px;
  stroke: var(--gold);
  stroke-width: 1.2
}

.brand-gold {
  color: var(--gold)
}

.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 3px;
  margin: 9px 0 0 3px;
  font-weight: 600;
  color: #d2d9ca
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 31px
}

#main-nav a {
  position: relative;
  color: #e9ede7;
  font-size: 14px;
  font-weight: 500;
  padding: 38px 0
}

#main-nav a.active:after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  bottom: 26px;
  left: 0
}

.nav-contact {
  min-height: 46px;
  padding: 11px 18px
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  border: 0
}

.hero {
  position: relative;
  min-height: 640px;
  background: var(--deep);
  color: white;
  overflow: hidden
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 30, 21, .89), rgba(15, 27, 20, .52) 43%, rgba(12, 24, 17, .05) 78%), linear-gradient(0deg, rgba(15, 25, 17, .45), transparent 45%)
}

.hero-inner {
  position: relative;
  min-height: 640px;
  padding-top: 63px;
  padding-bottom: 74px
}

.hero-copy {
  max-width: 675px
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  color: #8a754d;
  line-height: 1.5;
  margin-bottom: 18px
}

.eyebrow.light {
  color: var(--gold-light)
}

.eyebrow.light>span {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px
}

h1 {
  font-size: 68px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 600;
  margin-bottom: 22px
}

.hero-line {
  color: var(--gold-light)
}

.hero-description {
  font-size: 15px;
  line-height: 1.75;
  color: #eef0e9;
  margin-bottom: 25px
}

.hero-actions {
  display: flex;
  gap: 12px
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-top: 35px
}

.hero-features>div {
  display: flex;
  align-items: center;
  gap: 11px
}

.hero-features .icon {
  width: 30px;
  height: 34px;
  color: var(--gold)
}

.hero-features span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  color: #f0f0e9
}

.hero-pagination {
  position: absolute;
  bottom: 70px;
  right: 32px;
  display: flex;
  gap: 16px;
  align-items: center
}

.hero-pagination>span {
  width: 55px;
  height: 1px;
  background: #ffffff60
}

.slide-button {
  padding: 9px 4px;
  border: 0;
  background: none;
  color: #ffffff80;
  font-size: 14px
}

.slide-button.is-active {
  color: white
}

.image-note {
  position: absolute;
  right: 32px;
  bottom: 38px;
  font-size: 10px;
  color: #ffffffb0
}

.search-section {
  position: relative;
  z-index: 2;
  margin-top: -30px
}

.project-search {
  display: grid;
  grid-template-columns: repeat(4, 1fr) 190px;
  align-items: center;
  padding: 18px;
  background: white;
  box-shadow: 0 12px 35px #1c301018;
  border: 1px solid var(--line);
  border-radius: 7px;
  gap: 12px
}

.search-field {
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 12px
}

.search-field .icon {
  color: #7d8978
}

.search-field label {
  margin: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6
}

.search-field select {
  width: 100%;
  display: block;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  min-height: 28px;
  padding-right: 18px
}

.section-space {
  padding: 85px 0
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px
}

.section-heading p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin: 13px 0 0
}

.section-heading h2 {
  margin: 0
}

.outline-label {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 15px;
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  margin-bottom: 6px
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px
}

.city-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap
}

.city-tabs button {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 21px;
  border-radius: 4px;
  color: #687263;
  font-size: 12px;
  font-weight: 600
}

.city-tabs button.is-active {
  background: var(--green);
  color: white;
  border-color: var(--green)
}

.text-search {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  gap: 10px;
  margin: 0;
  padding: 10px 13px;
  min-width: 330px
}

.text-search .icon {
  width: 17px;
  height: 17px;
  color: #8a9286
}

.text-search input {
  border: 0;
  font-size: 12px;
  min-width: 0;
  width: 100%;
  outline: none
}

.listing-table {
  border: 1px solid var(--line);
  border-radius: 5px
}

.table {
  margin: 0;
  width: 100%;
  white-space: nowrap
}

.table th {
  font-size: 11px;
  background: var(--paper);
  font-weight: 600;
  color: #7a8175;
  border: 0 !important;
  padding: 17px 20px;
  vertical-align: middle
}

.table td {
  font-size: 12px;
  padding: 15px 20px;
  border-top: 1px solid #edf0e9;
  vertical-align: middle
}

.table tbody tr:nth-child(even) {
  background: #fbfcfa
}

.table tbody tr:hover {
  background: #f4f6ef
}

.project-name {
  font-weight: 700;
  color: var(--green);
  font-size: 13px;
  display: block
}

.project-location {
  display: block;
  font-size: 10px;
  margin-top: 4px;
  color: #87907f;
  font-weight: 400
}

.price-value {
  font-weight: 700;
  font-size: 13px;
  color: var(--green);
  font-variant-numeric: tabular-nums
}

.detail-button {
  border: 1px solid #e5d9be;
  background: #f7f1e5;
  color: #6c5830;
  padding: 7px 15px;
  border-radius: 3px;
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 11px;
  font-weight: 700
}

.detail-button .icon {
  width: 14px;
  height: 14px
}

.table-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: #8b9285;
  margin-top: 17px
}

.table-meta span:first-child {
  color: #52644b
}

#empty-state {
  padding: 50px;
  text-align: center
}

#empty-state h3 {
  font-size: 24px
}

#empty-state p {
  font-size: 14px
}

.floating-form {
  position: fixed;
  right: 0;
  top: 49%;
  z-index: 35;
  writing-mode: vertical-rl;
  background: var(--gold);
  color: var(--green);
  border: 0;
  border-radius: 5px 0 0 5px;
  padding: 19px 11px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 5px 15px #0002
}

.floating-form .icon {
  width: 17px;
  height: 17px
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 15px;
  z-index: 100;
  background: white;
  padding: 12px
}

.skip-link:focus {
  top: 10px
}

dialog {
  border: 0;
  z-index: 100;
  box-shadow: 0 20px 80px #0003
}

dialog::backdrop {
  background: #0f1c15a0;
  backdrop-filter: blur(3px)
}

body.dialog-open {
  overflow: hidden
}

.contact-dialog {
  margin: 0 0 0 auto;
  height: 100%;
  max-height: 100%;
  width: 480px;
  max-width: 100%;
  padding: 10px;
  background: var(--green);
  color: white;
  position: fixed;
  inset: 0 0 0 auto;
  overflow-y: auto
}

.contact-inner {
  border: 1px solid #c1a66f80;
  min-height: 100%;
  padding: 42px 32px;
  position: relative
}

.contact-inner .brand {
  margin-bottom: 42px
}

.contact-inner h2 {
  font-size: 38px
}

.contact-inner>p:not(.eyebrow) {
  font-size: 14px;
  color: #d5ddce
}

.contact-inner .eyebrow {
  font-size: 10px
}

.dialog-close {
  position: absolute;
  right: 24px;
  top: 23px;
  border: 1px solid #c1a66f55;
  background: #192e13;
  color: var(--gold);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  z-index: 1
}

.contact-dialog label {
  font-size: 12px;
  color: #e3e9de;
  margin: 15px 0 7px
}

.contact-dialog label span {
  color: #c4cfbd
}

.contact-dialog .form-control {
  background: #ffffff08;
  border: 1px solid #c1a66f70;
  color: white;
  font-size: 14px;
  border-radius: 3px;
  height: 44px
}

.contact-dialog textarea.form-control {
  height: auto
}

.contact-dialog select option {
  background: var(--green);
  color: white
}

.contact-dialog input::placeholder {
  color: #bdc9b8
}

.contact-dialog .form-control:focus {
  box-shadow: 0 0 0 2px #c1a66f33;
  border-color: var(--gold)
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.6;
  margin: 23px 0 !important
}

.consent input {
  margin-top: 4px;
  accent-color: var(--gold)
}

.form-note {
  font-size: 11px;
  line-height: 1.6;
  color: #c1cdba;
  margin: 17px 0 0
}

#form-result {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #c1a66f70;
  font-size: 13px
}

#form-result a {
  display: block;
  color: var(--gold-light);
  text-decoration: underline;
  margin-top: 10px
}

.detail-dialog {
  max-width: 640px;
  width: calc(100% - 30px);
  padding: 50px;
  border-radius: 7px;
  background: #fff;
  color: var(--ink)
}

.detail-dialog h2 {
  font-size: 36px;
  margin-right: 20px
}

.detail-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 25px 0;
  margin: 25px 0;
  border-block: 1px solid var(--line)
}

.detail-data small {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
  font-size: 12px
}

.detail-data strong {
  font-size: 18px
}

.detail-note {
  font-size: 13px;
  color: var(--muted)
}

@media(min-width:1600px) {
  .hero-inner, .hero {
    min-height: 700px
  }

  .hero-inner {
    padding-top: 85px
  }

  h1 {
    font-size: 78px
  }

  .hero-features {
    margin-top: 40px
  }

  .hero-image {
    object-position: center 55%
  }
}

@media(max-width:1199px) {
  #main-nav {
    gap: 20px
  }

  .nav-wrap {
    gap: 15px
  }

  .brand {
    font-size: 31px
  }

  .nav-contact {
    font-size: 12px
  }

  .project-search {
    grid-template-columns: repeat(4, 1fr) 150px;
    gap: 7px;
    padding: 15px
  }

  .search-field {
    gap: 8px;
    padding-left: 5px
  }

  .search-field .icon {
    width: 18px
  }

  .project-search .btn {
    padding: 12px;
    gap: 10px
  }

  .table th, .table td {
    padding-left: 14px;
    padding-right: 14px
  }

  .city-tabs button {
    padding: 10px 15px
  }

  .text-search {
    min-width: 280px
  }

  h1 {
    font-size: 62px
  }
}

@media(max-width:991px) {
  .container {
    padding-left: 24px;
    padding-right: 24px
  }

  #main-nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--green);
    padding: 15px 25px;
    box-shadow: 0 10px 20px #0002
  }

  #main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0
  }

  #main-nav a {
    padding: 14px 0
  }

  #main-nav a.active:after {
    bottom: 7px
  }

  .nav-wrap {
    min-height: 85px
  }

  .menu-toggle {
    display: block;
    padding: 10px
  }

  .nav-contact {
    margin-left: auto
  }

  .hero-inner, .hero {
    min-height: 630px
  }

  .hero-inner {
    padding-top: 65px
  }

  .hero-shade {
    background: linear-gradient(90deg, #102216eb, #142a19a0 55%, #10221640)
  }

  .project-search {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 17px
  }

  .project-search>.btn {
    grid-column: 1/-1
  }

  .search-field:nth-child(2n) {
    border: 0
  }

  .section-heading {
    align-items: flex-start
  }

  .outline-label {
    display: none
  }

  .listing-toolbar {
    flex-direction: column;
    align-items: stretch
  }

  .text-search {
    width: 100%
  }

  .table-meta {
    flex-direction: column;
    gap: 7px
  }

  .floating-form {
    padding: 15px 8px;
    font-size: 11px
  }
}

@media(max-width:575px) {
  .container {
    padding-left: 20px;
    padding-right: 20px
  }

  .topbar {
    font-size: 10px;
    padding: 8px 0
  }

  .topbar .container {
    justify-content: center !important
  }

  .topbar .container>span:last-child {
    display: none
  }

  .nav-wrap {
    min-height: 78px;
    gap: 10px
  }

  .brand {
    font-size: 30px;
    gap: 8px
  }

  .brand-mark {
    width: 31px;
    height: 35px
  }

  .brand small {
    font-size: 6px;
    letter-spacing: 2px
  }

  .nav-contact {
    font-size: 0;
    min-height: 39px;
    padding: 9px;
    gap: 0
  }

  .nav-contact .icon {
    width: 20px
  }

  #main-nav {
    top: 78px
  }

  .hero-inner, .hero {
    min-height: 620px
  }

  .hero-inner {
    padding-top: 56px;
    padding-bottom: 93px
  }

  .hero-image {
    object-position: 64% center
  }

  .hero-shade {
    background: linear-gradient(90deg, #102216eb, #142a19b5 65%, #10221670)
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px
  }

  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px
  }

  h1 {
    font-size: 51px;
    letter-spacing: -1.5px
  }

  .hero-description {
    font-size: 13px;
    max-width: 320px
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 9px
  }

  .hero-actions .btn {
    font-size: 11px;
    min-height: 46px;
    padding: 12px 14px;
    gap: 10px
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    max-width: 310px;
    margin-top: 29px
  }

  .hero-features .icon {
    width: 26px;
    height: 29px
  }

  .hero-features span {
    font-size: 11px
  }

  .hero-pagination {
    bottom: 54px;
    right: 22px;
    gap: 8px
  }

  .hero-pagination>span {
    width: 30px
  }

  .image-note {
    bottom: 32px;
    right: 22px;
    font-size: 9px
  }

  .project-search {
    padding: 17px 14px;
    gap: 15px 8px
  }

  .search-field {
    padding-left: 0;
    gap: 8px
  }

  .search-field select {
    font-size: 12px
  }

  .section-space {
    padding: 60px 0
  }

  h2 {
    font-size: 36px
  }

  .section-heading p:last-child {
    font-size: 13px
  }

  .city-tabs {
    gap: 5px
  }

  .city-tabs button {
    padding: 8px 13px;
    font-size: 11px
  }

  .table th {
    font-size: 10px
  }

  .table td {
    font-size: 11px
  }

  .table-meta {
    font-size: 10px
  }

  .floating-form {
    top: auto;
    bottom: 20px;
    right: 16px;
    writing-mode: horizontal-tb;
    border-radius: 5px;
    padding: 13px 17px;
    gap: 14px;
    box-shadow: 0 4px 20px #0003
  }

  .contact-inner {
    padding: 36px 24px
  }

  .contact-inner h2 {
    font-size: 35px
  }

  .contact-inner .brand {
    margin-bottom: 32px
  }

  .detail-dialog {
    padding: 38px 25px
  }

  .detail-dialog h2 {
    font-size: 31px
  }

  .detail-data {
    gap: 20px 12px
  }

  .detail-data strong {
    font-size: 16px
  }
}

.process-section {
  background: var(--paper);
  border-block: 1px solid var(--line)
}

.section-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0
}

.process-grid {
  margin-top: 42px
}

.process-step {
  position: relative;
  border-top: 1px solid #d6ddcf;
  padding-top: 26px;
  padding-right: 20px
}

.step-number {
  font-family: Urbanist, sans-serif;
  color: #a8b69e;
  font-size: 36px;
  font-weight: 400;
  display: block;
  margin-bottom: 35px
}

.process-step>.icon {
  position: absolute;
  right: 25px;
  top: 31px;
  width: 28px;
  height: 28px;
  color: #7b8b72
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0
}

.calculator-section {
  background: var(--green);
  color: white
}

.calculator-intro {
  padding-right: 70px
}

.calculator-intro h2 {
  font-size: 55px;
  letter-spacing: -1.6px;
  line-height: 1.08;
  margin-bottom: 25px
}

.calculator-intro>p:not(.eyebrow) {
  font-size: 15px;
  color: #d1d9ca;
  max-width: 400px
}

.calc-feature {
  display: flex;
  gap: 17px;
  margin-top: 30px;
  align-items: center
}

.calc-feature>.icon {
  width: 33px;
  height: 33px;
  color: var(--gold)
}

.calc-feature strong {
  font-size: 14px;
  font-weight: 500;
  display: block
}

.calc-feature span {
  display: block;
  color: #bdcbb4;
  font-size: 12px;
  margin-top: 5px
}

.calculator-card {
  background: #fff;
  color: var(--ink);
  padding: 36px 40px;
  border-radius: 6px;
  margin-left: 20px
}

.calc-card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px
}

.calc-card-title h3 {
  font-size: 25px;
  margin: 0;
  letter-spacing: -.5px
}

.calc-card-title>span {
  font-size: 9px;
  letter-spacing: 1.2px;
  background: #f2f5ed;
  color: #657752;
  border-radius: 3px;
  padding: 7px 10px
}

.calc-label, .range-heading label {
  font-size: 12px;
  font-weight: 600;
  margin: 0
}

.calc-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px
}

.calc-label>span {
  color: #949b8e
}

.calc-value {
  font-family: Urbanist, sans-serif;
  height: 54px;
  background: #f7f8f4;
  border-color: var(--line);
  font-weight: 600;
  font-size: 24px;
  padding: 10px 17px;
  color: var(--green)
}

.range-heading {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.range-heading output {
  font-size: 15px;
  font-weight: 700;
  color: var(--green)
}

input[type=range] {
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #e9ecdf;
  margin: 17px 0 7px;
  cursor: pointer;
  accent-color: var(--green)
}

input[type=range]::-webkit-slider-thumb {
  appearance: none;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--green)
}

input[type=range]::-moz-range-thumb {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid white
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: #9ba192;
  font-size: 10px
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  margin: 28px 0 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.calc-results>div>span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 6px
}

.calc-results strong {
  font-family: Urbanist, sans-serif;
  font-size: 23px;
  font-weight: 600
}

.monthly-result {
  grid-column: 1/-1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px
}

.monthly-result>span {
  font-size: 13px !important;
  color: var(--green) !important;
  margin: 0 !important
}

.monthly-result strong {
  color: var(--green);
  font-size: 37px;
  letter-spacing: -.8px
}

.monthly-result small {
  font-family: Manrope, sans-serif;
  color: #7d8575;
  font-size: 12px;
  margin-left: 7px;
  letter-spacing: 0
}

.calc-note {
  font-size: 11px;
  color: #8a9182;
  line-height: 1.75;
  margin-bottom: 23px
}

.calc-error {
  font-size: 13px;
  color: #a23226
}

.about-image {
  position: relative;
  margin: 0 28px 0 0;
  overflow: hidden;
  border-radius: 5px
}

.about-image>img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 45% center;
  display: block
}

.about-image:after {
  content: '';
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(0deg, #142017e6, transparent)
}

.about-image figcaption {
  position: absolute;
  bottom: 35px;
  left: 32px;
  right: 20px;
  z-index: 1;
  color: white
}

.about-image figcaption>span:first-child {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px
}

.about-image figcaption>strong {
  font-family: Urbanist, sans-serif;
  font-size: 30px;
  display: block;
  font-weight: 500
}

.about-image figcaption>span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 10px;
  color: #dce1d8
}

.about-image .icon {
  width: 15px;
  height: 15px
}

.about-copy {
  padding-left: 40px
}

.about-copy h2 {
  font-size: 45px;
  margin-bottom: 25px
}

.about-copy>p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted)
}

.commitments {
  padding: 0;
  list-style: none;
  margin: 24px 0 28px
}

.commitments li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  margin-bottom: 13px
}

.commitments .icon {
  width: 17px;
  height: 17px;
  color: #8c9e74
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 7px 0;
  background: none;
  color: var(--green);
  border: 0;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 700
}

.text-link .icon {
  width: 19px;
  height: 19px
}

.stories-section {
  background: var(--paper)
}

.stories-section .row {
  margin-top: 40px
}

.story-card {
  padding: 27px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  height: 100%
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 1;
  color: var(--gold);
  height: 50px;
  display: block
}

.story-card blockquote {
  font-family: Urbanist, sans-serif;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: -.2px;
  margin: 8px 0 30px
}

.story-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--line)
}

.person-icon {
  width: 42px;
  height: 42px;
  border: 1px solid #e4e9dc;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #779064;
  flex-shrink: 0
}

.person-icon .icon {
  width: 21px;
  height: 21px
}

.story-person strong {
  font-size: 11px;
  display: block;
  font-weight: 700
}

.story-person small {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 5px
}

.faq-intro p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px
}

.faq-intro .text-link {
  margin-top: 10px
}

.faq-list details {
  border-bottom: 1px solid var(--line)
}

.faq-list details:first-child {
  border-top: 1px solid var(--line)
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  padding: 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  align-items: center
}

.faq-list summary::-webkit-details-marker {
  display: none
}

.faq-list summary>span {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.faq-list summary>span:before, .faq-list summary>span:after {
  content: '';
  position: absolute;
  top: 8px;
  left: 3px;
  width: 12px;
  height: 1px;
  background: #92a17f
}

.faq-list summary>span:after {
  transform: rotate(90deg)
}

.faq-list details[open] summary>span:after {
  display: none
}

.faq-list p {
  font-size: 13px;
  color: var(--muted);
  padding-right: 30px;
  line-height: 1.9;
  margin: 0 0 26px
}

.closing-section {
  padding: 50px 0;
  background: var(--green);
  color: white
}

.closing-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.closing-inner .eyebrow {
  font-size: 10px;
  margin-bottom: 10px
}

.closing-inner h2 {
  font-size: 37px;
  margin: 0
}

.closing-inner>.btn {
  flex-shrink: 0
}

.site-footer {
  background: #152812;
  color: #d7dfd1;
  padding: 60px 0 22px
}

.footer-top h3 {
  font-family: Manrope, sans-serif;
  font-size: 13px;
  color: white;
  margin-bottom: 23px
}

.footer-top>div>a:not(.brand), .footer-top>div>button {
  display: block;
  color: #aebda5;
  font-size: 12px;
  margin-bottom: 14px;
  background: none;
  border: 0;
  padding: 0;
  text-align: left
}

.footer-top>div>a:hover, .footer-top>div>button:hover {
  color: var(--gold)
}

.footer-top p {
  font-size: 12px;
  color: #aebda5;
  margin-top: 25px
}

.footer-top .brand {
  font-size: 33px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ffffff15;
  color: #9bad90;
  gap: 25px
}

.footer-bottom>div {
  display: flex;
  gap: 23px
}

.footer-bottom button {
  background: none;
  border: 0;
  color: inherit;
  padding: 0;
  font-size: 11px
}

.footer-disclaimer {
  font-size: 10px;
  color: #8ea182;
  line-height: 1.8;
  margin: 18px 0 0
}

.table th {
  font-size: 12px
}

.table td {
  font-size: 14px
}

.project-name, .price-value {
  font-size: 14px
}

.project-location {
  font-size: 12px
}

.city-tabs button {
  font-size: 14px;
  padding: 10px 18px
}

.text-search input {
  font-size: 13px
}

.detail-button {
  font-size: 12px
}

.search-field label {
  font-size: 13px
}

.search-field select {
  font-size: 14px
}

.hero-features span {
  font-size: 13px
}

.table-meta {
  font-size: 12px
}

@media(max-width:1199px) {
  .city-tabs button {
    padding: 10px 13px;
    font-size: 13px
  }

  .calculator-intro {
    padding-right: 35px
  }

  .calculator-card {
    margin-left: 0;
    padding: 32px
  }

  .calculator-intro h2 {
    font-size: 48px
  }

  .about-copy {
    padding-left: 25px
  }

  .about-copy h2 {
    font-size: 39px
  }

  .about-image {
    margin-right: 10px
  }

  .story-card {
    padding: 25px 22px
  }

  .story-card blockquote {
    font-size: 20px
  }

  .table td {
    font-size: 13px
  }

  .project-name, .price-value {
    font-size: 13px
  }
}

@media(max-width:991px) {
  .process-step {
    margin-bottom: 32px
  }

  .process-grid {
    margin-bottom: -32px
  }

  .calculator-intro {
    padding-right: 15px;
    margin-bottom: 38px
  }

  .calculator-intro>p:not(.eyebrow) {
    max-width: 600px
  }

  .calculator-card {
    margin: 0
  }

  .calc-feature {
    display: inline-flex;
    margin-right: 30px;
    margin-top: 17px
  }

  .about-image {
    margin: 0 0 35px
  }

  .about-image>img {
    height: 440px
  }

  .about-copy {
    padding-left: 15px
  }

  .about-copy h2 {
    font-size: 43px
  }

  .story-card blockquote {
    font-size: 18px
  }

  .story-person {
    gap: 8px
  }

  .person-icon {
    display: none
  }

  .faq-intro {
    margin-bottom: 35px
  }

  .faq-intro h2 br {
    display: none
  }

  .closing-inner h2 {
    font-size: 30px
  }

  .footer-top>div:first-child {
    margin-bottom: 30px
  }
}

@media(max-width:575px) {
  .section-heading {
    flex-direction: column;
    gap: 15px
  }

  .process-grid {
    margin-top: 30px
  }

  .process-step {
    padding-top: 22px;
    padding-left: 52px;
    margin-bottom: 27px;
    min-height: 120px
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 18px;
    font-size: 28px
  }

  .process-step>.icon {
    display: none
  }

  .process-step h3 {
    font-size: 22px
  }

  .process-step p {
    font-size: 13px
  }

  .calculator-intro h2 {
    font-size: 43px
  }

  .calculator-intro>p:not(.eyebrow) {
    font-size: 14px
  }

  .calc-feature {
    display: flex;
    margin-top: 23px
  }

  .calc-feature strong {
    font-size: 13px
  }

  .calculator-card {
    padding: 24px 20px
  }

  .calc-card-title h3 {
    font-size: 22px
  }

  .calc-card-title>span {
    font-size: 8px;
    padding: 6px
  }

  .calc-results {
    gap: 15px 12px
  }

  .calc-results strong {
    font-size: 22px
  }

  .monthly-result strong {
    font-size: 30px
  }

  .monthly-result>span {
    font-size: 11px !important
  }

  .monthly-result small {
    font-size: 10px;
    margin-left: 3px
  }

  .calculator-card>.btn {
    font-size: 12px;
    padding: 12px 14px;
    gap: 8px
  }

  .about-image>img {
    height: 380px
  }

  .about-image figcaption {
    left: 24px;
    bottom: 25px
  }

  .about-image figcaption>strong {
    font-size: 28px
  }

  .about-copy h2 {
    font-size: 36px
  }

  .commitments li {
    font-size: 12px
  }

  .stories-section .row {
    margin-top: 25px
  }

  .stories-section .col-md-4+.col-md-4 {
    margin-top: 16px
  }

  .story-card {
    padding: 25px
  }

  .story-card blockquote {
    font-size: 23px
  }

  .person-icon {
    display: grid
  }

  .story-person strong {
    font-size: 12px
  }

  .story-person small {
    font-size: 11px
  }

  .faq-list summary {
    font-size: 14px;
    padding: 21px 0
  }

  .faq-list p {
    padding-right: 10px;
    font-size: 13px
  }

  .closing-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px
  }

  .closing-inner h2 {
    font-size: 35px
  }

  .closing-inner .eyebrow {
    line-height: 1.8
  }

  .footer-top h3 {
    font-size: 12px;
    line-height: 1.7
  }

  .footer-top>div>a:not(.brand), .footer-top>div>button {
    font-size: 12px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    font-size: 10px
  }

  .footer-disclaimer {
    font-size: 10px;
    margin-bottom: 55px
  }

  .city-tabs button {
    font-size: 12px;
    padding: 8px 13px
  }

  .search-field select {
    font-size: 12px
  }

  .search-field label {
    font-size: 12px
  }

  .hero-features span {
    font-size: 11px
  }

  .table-meta {
    font-size: 11px
  }

  .table th {
    font-size: 12px
  }

  .table td {
    font-size: 13px
  }
}

/* The automatic desktop form belongs to the slider; button-opened dialogs keep their existing layout. */
@media(min-width:992px) {
  .hero {
    --hero-form-width: 400px
  }

  .hero.has-hero-form .hero-copy {
    max-width: min(675px, calc(100% - var(--hero-form-width) - 64px))
  }

  .contact-dialog.contact-dialog--hero {
    position: absolute;
    inset: 24px 30px auto auto;
    width: var(--hero-form-width);
    height: calc(100% - 58px);
    max-height: calc(100% - 58px);
    margin: 0;
    padding: 8px;
    z-index: 4;
    box-shadow: 0 12px 35px #06100633;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--green);
    animation: hero-form-in .25s ease-out
  }

  .contact-dialog--hero .contact-inner {
    padding: 17px 22px;
    min-height: 100%
  }

  .contact-dialog--hero .brand {
    font-size: 27px;
    margin-bottom: 14px
  }

  .contact-dialog--hero .brand-mark {
    width: 30px;
    height: 33px
  }

  .contact-dialog--hero .dialog-close {
    top: 17px;
    right: 17px;
    width: 30px;
    height: 30px
  }

  .contact-dialog--hero .contact-inner>.eyebrow {
    display: none
  }

  .contact-dialog--hero .contact-inner h2 {
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.6px;
    margin-bottom: 9px
  }

  .contact-dialog--hero .contact-inner>p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px
  }

  .contact-dialog--hero label {
    margin: 8px 0 4px;
    font-size: 11px
  }

  .contact-dialog--hero .form-control {
    height: 35px;
    font-size: 13px;
    padding: 6px 10px
  }

  .contact-dialog--hero textarea.form-control {
    height: 44px;
    min-height: 44px
  }

  .contact-dialog--hero .consent {
    margin: 12px 0 !important;
    font-size: 11px;
    line-height: 1.5
  }

  .contact-dialog--hero .btn {
    min-height: 42px;
    padding: 9px 16px;
    font-size: 12px
  }

  .contact-dialog--hero .form-note {
    font-size: 10px;
    line-height: 1.5;
    margin: 10px 0 0
  }

  .hero.has-hero-form .hero-pagination, .hero.has-hero-form .image-note {
    right: calc(var(--hero-form-width) + 60px)
  }
}

@media(min-width:992px) and (max-width:1199px) {
  .hero {
    --hero-form-width: 350px
  }

  .hero.has-hero-form h1 {
    font-size: 58px
  }

  .hero.has-hero-form .hero-features {
    gap: 18px
  }

  .hero.has-hero-form .hero-features span {
    font-size: 12px
  }

  .hero.has-hero-form .hero-actions .btn {
    padding: 12px 16px;
    gap: 12px;
    font-size: 12px
  }

  .contact-dialog--hero .contact-inner {
    padding: 18px
  }
}

@keyframes hero-form-in {
  from {
    opacity: 0;
    transform: translateX(24px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

html {
  overflow-x: hidden
}

body {
  overflow-x: clip
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  * {
    animation: none !important;
    transition: none !important
  }
}

/* 4174 tasarımından alınan bağımsız harita alanı; ilk tasarımın stillerini değiştirmez. */
#konumlar {
  --deep: #123326;
  --navy: #14243b;
  color: #14243b;
  font-family: Manrope, Arial, sans-serif;
  overflow: hidden
}

#konumlar .location-layout {
  display: grid;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  padding-left: 28px;
  padding-right: 28px
}

#konumlar .location-copy {
  position: relative;
  z-index: 1;
  color: white
}

#konumlar .location-copy h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  letter-spacing: -.6px;
  margin-bottom: 13px
}

#konumlar .location-copy .eyebrow {
  font-weight: 700;
  line-height: 1.4;
  color: #efd8a6;
  margin: 0 0 11px
}

#konumlar .location-copy p:not(.eyebrow) {
  color: #e9efdf;
  margin-bottom: 19px
}

#konumlar .btn-gold {
  background: linear-gradient(105deg, #efdbab, #c5a46a);
  border: 1px solid #cfb380;
  color: #173526;
  box-shadow: inset 0 1px #fff7;
  border-radius: 5px;
  min-height: 39px;
  transform: none
}

#konumlar .btn-gold:hover {
  background: #eed8aa
}

#konumlar .btn-gold .icon {
  width: 17px;
  height: 17px
}

#konumlar .turkey-map {
  position: relative;
  min-width: 0;
  z-index: 1
}

#konumlar .map-project {
  text-decoration: none
}

.project-detail-page {
  --deep: #123326;
  --navy: #14243b
}

.project-detail-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #163b2bf7;
  height: 82px
}

.project-detail-page .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px
}

.project-detail-page .site-header nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  color: #f4f5ef
}

.project-detail-page .site-header .btn {
  min-height: 42px;
  font-size: 12px
}

.project-detail-page .brand-icon {
  width: 46px;
  height: 51px;
  fill: none;
  stroke: #efd8a6;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.project-detail-page .brand {
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: bold;
  letter-spacing: -.5px
}

.project-detail-page .brand small {
  font-family: Manrope, sans-serif;
  letter-spacing: 1.45px;
  color: #dbc599;
  margin-top: 8px
}

.project-detail-page h1, .project-detail-page h2 {
  font-family: Georgia, serif
}

.project-detail-page .eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  color: #a2763f
}

.project-detail-page .sample-label {
  padding: 7px 13px;
  border: 1px solid #e8dfce;
  border-radius: 30px;
  color: #93713d;
  font-size: 10px
}

#konumlar.locations {
  background: linear-gradient(90deg, #183d2d 0%, #183d2d calc((100% - 1400px)/2 + 290px), #f6f3eb calc((100% - 1400px)/2 + 290px), #f6f3eb 100%)
}

#konumlar .location-layout {
  grid-template-columns: 242px minmax(0, 1fr) 304px;
  gap: 26px;
  min-height: 452px;
  padding-top: 28px;
  padding-bottom: 28px
}

#konumlar .location-copy {
  background: transparent;
  padding: 24px 0
}

#konumlar .location-copy:after {
  display: none
}

#konumlar .location-copy h2 {
  font-size: 29px;
  line-height: 1.14
}

#konumlar .location-copy p:not(.eyebrow) {
  font-size: 12px;
  line-height: 1.7
}

#konumlar .location-copy .eyebrow {
  font-size: 9px;
  letter-spacing: 1.4px;
  max-width: 220px
}

#konumlar .map-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 24px 0;
  color: #eddbb3
}

#konumlar .map-summary strong {
  font-size: 21px;
  font-family: Georgia, serif
}

#konumlar .map-summary span {
  font-size: 11px;
  border-left: 1px solid #ffffff30;
  padding-left: 15px
}

#konumlar .location-copy .btn {
  padding: 10px 15px;
  font-size: 10px;
  gap: 11px
}

#konumlar .map-explorer {
  min-width: 0;
  position: relative
}

#konumlar .turkey-map {
  width: 100%;
  padding: 0 0 5px;
  filter: drop-shadow(0 7px 3px #6551260b)
}

#konumlar .turkey-map svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible
}

#konumlar .map-province {
  fill: #e3d8bd;
  stroke: #fff;
  stroke-width: 1.3;
  stroke-linejoin: round
}

#konumlar .map-province.has-projects {
  fill: #718469;
  cursor: pointer
}

#konumlar .map-province.has-projects:hover {
  fill: #41694b
}

#konumlar .map-province.is-selected {
  fill: #bd994e
}

#konumlar .map-sea {
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 500;
  fill: #a8b1aa;
  letter-spacing: 6px;
  text-anchor: middle
}

#konumlar .map-marker {
  cursor: pointer;
  outline: none
}

#konumlar .map-marker-stem {
  stroke: #35543b;
  stroke-width: 2
}

#konumlar .map-marker-dot {
  fill: #214d37;
  stroke: white;
  stroke-width: 3
}

#konumlar .map-marker-label {
  fill: #fff;
  stroke: #d7d9cf;
  stroke-width: 1;
  filter: drop-shadow(0 3px 4px #163a2020)
}

#konumlar .map-marker-name {
  fill: #214c38;
  font-family: Manrope, sans-serif;
  font-size: 17px;
  font-weight: 700
}

#konumlar .map-marker-count-bg {
  fill: #e9f0e5
}

#konumlar .map-marker-count {
  fill: #34553c;
  font-family: Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800
}

#konumlar .map-marker:hover .map-marker-label, #konumlar .map-marker:focus .map-marker-label {
  stroke: #947235;
  stroke-width: 3;
  fill: #fff8e6
}

#konumlar .map-marker.is-selected .map-marker-label {
  fill: #f4e1b2;
  stroke: #bc9952
}

#konumlar .map-marker.is-selected .map-marker-count-bg {
  fill: #fff9e9
}

#konumlar .map-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 12px;
  font-size: 10px;
  color: #7c847a
}

#konumlar .map-legend span {
  display: flex;
  align-items: center;
  gap: 7px
}

#konumlar .map-legend i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  display: inline-block
}

#konumlar .legend-available {
  background: #718469
}

#konumlar .legend-selected {
  background: #bd994e
}

#konumlar .map-attribution {
  display: block;
  text-align: center;
  font-size: 8px;
  color: #9b9e92
}

#konumlar .map-project-panel {
  background: #fff;
  border: 1px solid #e6dfcf;
  border-radius: 7px;
  padding: 17px 16px 14px;
  box-shadow: 0 5px 22px #21331b07;
  min-width: 0
}

#konumlar .map-project-panel>label {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #8e794b;
  font-weight: 700;
  margin-bottom: 8px
}

#konumlar .map-project-panel>select {
  width: 100%;
  border: 1px solid #dfe5da;
  background: #f8faf6;
  color: #214431;
  border-radius: 4px;
  padding: 9px 11px;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  outline-offset: 2px
}

#konumlar .map-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 16px 0 4px
}

#konumlar .map-panel-heading h3 {
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  margin: 0
}

#konumlar .map-panel-heading>span {
  font-size: 9px;
  color: #929a94;
  white-space: nowrap
}

#konumlar .map-project-list {
  max-height: 300px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #c8d0c2 #f7f8f4
}

#konumlar .map-project {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eef0e9;
  color: var(--navy)
}

#konumlar .map-project:last-child {
  border: 0
}

#konumlar .map-project img {
  width: 56px;
  height: 47px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0
}

#konumlar .map-project>span {
  min-width: 0;
  flex: 1
}

#konumlar .map-project strong {
  display: block;
  font-size: 11px;
  letter-spacing: -.3px;
  line-height: 1.4
}

#konumlar .map-project small {
  display: block;
  font-size: 9px;
  color: #8c958d;
  margin-top: 3px
}

#konumlar .map-project b {
  display: block;
  font-size: 9px;
  color: #6c7d6c;
  margin-top: 3px;
  font-weight: 500
}

#konumlar .map-project>.icon {
  width: 15px;
  height: 15px;
  color: #ab8c4e
}

#konumlar .map-project:hover strong {
  color: #9f783b
}

#konumlar .map-panel-note {
  font-size: 9px;
  color: #929c93;
  line-height: 1.6;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #ecefe8
}

.project-detail-page {
  background: #faf9f6
}

.project-detail-page .project-detail-container {
  padding-top: 116px;
  padding-bottom: 28px
}

.project-detail-page .detail-back {
  display: inline-block;
  font-size: 12px;
  color: #70806b;
  margin: 4px 0 27px
}

.project-detail-page .detail-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.project-detail-page .detail-heading h1 {
  font-size: 46px;
  letter-spacing: -1.2px;
  color: var(--deep);
  margin-bottom: 8px
}

.project-detail-page .detail-heading p:last-child {
  color: #7a857b;
  font-size: 14px;
  margin: 0
}

.project-detail-page .detail-heading .eyebrow {
  font-size: 10px;
  margin-bottom: 11px
}

.project-detail-page .detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 405px;
  gap: 32px;
  align-items: stretch
}

.project-detail-page .detail-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #e1e6da;
  min-height: 555px
}

.project-detail-page .detail-photo>img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%
}

.project-detail-page .detail-photo>span {
  position: absolute;
  bottom: 17px;
  left: 18px;
  background: #153b2bcc;
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
  padding: 7px 11px
}

.project-detail-page .detail-summary {
  border: 1px solid #e7dec9;
  border-radius: 8px;
  padding: 28px 30px;
  background: white
}

.project-detail-page .detail-summary h2 {
  font-size: 31px;
  color: var(--deep);
  margin-bottom: 22px
}

.project-detail-page .detail-price {
  border-bottom: 1px solid var(--line);
  padding-bottom: 19px
}

.project-detail-page .detail-price small {
  display: block;
  font-size: 12px;
  color: #7f8a7a;
  margin-bottom: 5px
}

.project-detail-page .detail-price strong {
  font-size: 29px;
  color: #1f4230
}

.project-detail-page .detail-facts {
  margin: 16px 0 20px
}

.project-detail-page .detail-facts>div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0
}

.project-detail-page .detail-facts dt {
  font-size: 12px;
  color: #7b8779;
  font-weight: 400
}

.project-detail-page .detail-facts dd {
  font-size: 12px;
  font-weight: 700;
  margin: 0
}

.project-detail-page .detail-plan {
  display: flex;
  border: 1px solid #eee5d4;
  border-radius: 5px;
  padding: 17px 0;
  background: #fcfaf5;
  margin-bottom: 20px
}

.project-detail-page .detail-plan>div {
  width: 50%;
  text-align: center
}

.project-detail-page .detail-plan>div+div {
  border-left: 1px solid #e6dbc5
}

.project-detail-page .detail-plan strong {
  display: block;
  font-size: 25px;
  color: #304c2d
}

.project-detail-page .detail-plan span {
  font-size: 10px;
  color: #8a8d79
}

.project-detail-page .detail-summary>.btn {
  width: 100%;
  font-size: 12px
}

.project-detail-page .detail-disclaimer {
  font-size: 9px;
  color: #8b9488;
  line-height: 1.7;
  margin: 13px 0 0
}

.project-detail-page .detail-description {
  padding: 35px 0 15px;
  max-width: 850px
}

.project-detail-page .detail-description h2 {
  font-size: 30px
}

.project-detail-page .detail-description p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9;
  color: #778371
}

.project-detail-page .project-not-found {
  padding: 80px 0 180px
}

.project-detail-page .project-not-found h1 {
  margin-bottom: 35px
}

.project-detail-page footer {
  background: #fff
}

@media(max-width:1199px) {
  #konumlar .location-layout {
    grid-template-columns: 210px minmax(0, 1fr) 270px;
    gap: 18px
  }

  #konumlar.locations {
    background: linear-gradient(90deg, #183d2d 0%, #183d2d 260px, #f6f3eb 260px, #f6f3eb 100%)
  }

  #konumlar .location-copy h2 {
    font-size: 27px
  }
}

@media(max-width:991px) {
  #konumlar.locations {
    background: #f6f3eb
  }

  #konumlar .location-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    padding-top: 0;
    gap: 24px
  }

  #konumlar .location-copy {
    grid-column: 1/-1;
    background: #183d2d;
    margin: 0 -28px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap
  }

  #konumlar .location-copy .eyebrow {
    width: 100%;
    max-width: none;
    margin-bottom: -9px
  }

  #konumlar .location-copy h2 {
    margin: 0;
    font-size: 29px
  }

  #konumlar .location-copy p:not(.eyebrow) {
    margin: 0
  }

  #konumlar .map-summary {
    margin: 0
  }

  .project-detail-page .detail-grid {
    grid-template-columns: 1fr
  }

  .project-detail-page .detail-photo {
    min-height: 450px
  }
}

@media(max-width:575px) {
  #konumlar .location-layout {
    display: block;
    padding: 0 20px 25px
  }

  #konumlar .location-copy {
    display: block;
    margin: 0 -20px;
    padding: 27px 20px
  }

  #konumlar .location-copy .eyebrow {
    margin-bottom: 14px
  }

  #konumlar .location-copy h2 {
    font-size: 31px;
    margin-bottom: 15px
  }

  #konumlar .map-summary {
    margin: 20px 0
  }

  #konumlar .location-copy .btn {
    margin-top: 4px
  }

  #konumlar .map-explorer {
    padding: 28px 0 20px
  }

  #konumlar .map-project-panel {
    padding: 18px
  }

  #konumlar .map-project strong {
    font-size: 13px
  }

  #konumlar .map-project small, #konumlar .map-project b {
    font-size: 11px
  }

  #konumlar .map-project-list {
    max-height: 320px
  }

  #konumlar .map-project-panel>select {
    font-size: 14px
  }

  .project-detail-page .site-header nav {
    display: none
  }

  .project-detail-page .brand {
    font-size: 23px
  }

  .project-detail-page .brand-icon {
    width: 32px;
    height: 35px
  }

  .project-detail-page .brand small {
    font-size: 6px;
    letter-spacing: 1px
  }

  .project-detail-page .header-inner {
    gap: 15px
  }

  .project-detail-page .site-header .btn {
    padding: 8px 12px;
    font-size: 10px
  }

  .project-detail-page .detail-heading h1 {
    font-size: 34px
  }

  .project-detail-page .detail-photo {
    min-height: 320px
  }

  .project-detail-page .detail-summary {
    padding: 24px
  }

  .project-detail-page .detail-heading {
    gap: 16px
  }

  .project-detail-page .footer-bottom {
    margin-top: 0
  }
}
