:root {
  --accent: #f9b146;
  --text: #1f1f1f;
  --muted: #5d5d5d;
  --bg: #f3f3f3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

.aranokta {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: black;
    border-radius: 50%;
    margin-bottom: 3px;
}

.page {
  width: 100%;
  margin: 0 auto;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 560px);
  min-height: 100vh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg.jpg") center center / cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2));
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 56px 40px 56px 120px;
}

.hero-bg {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 940px;
}

.brand-top {
  width: 350px;
  margin: 40px 0;
}

.small-text {
  margin: 0;
  font-size: 40px;
  letter-spacing: 0.3px;
  font-weight: 300;
  line-height: 1.05;
}

h1 {
  margin: 6px 0 22px;
  font-size: 85px;
  line-height: 0.95;
  font-weight: 800;
}

h1 span {
  display: block;
  margin-top: 8px;
  font-weight: 300;
  font-size: 40px;
}

.badge-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.badge {
  display: inline-block;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: 8px 0px;
}

.hero-list {
  margin: 24px 0 0 0;
  padding-left: 16px;
  color: #2f2f2f;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 300;
}

.visual-note {
  margin: 92px 0 0;
  font-size: 20px;
  font-weight: 300;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-right {
  position: relative;
  z-index: 1;
  background: #efefef;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  padding: 180px 64px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lead-form {
  width: 100%;
}

.form-message {
  display: none;
  width: 100%;
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.form-message.is-success {
  display: block;
  color: #1d6b37;
  background: #dff3e7;
  border: 1px solid #9bd4b1;
}

.form-message.is-error {
  display: block;
  color: #8b1f1f;
  background: #f9dfdf;
  border: 1px solid #e6a1a1;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"],
.lead-form textarea {
  width: 100%;
  border: 1px solid #bcbcbc;
  margin-bottom: 14px;
  padding: 13px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 300;
  color: #2b2b2b;
  background: transparent;
}

.lead-form .submit-btn {
  width: 100%;
  border: none;
  background: #111;
  color: #fff;
  padding: 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 6px;
  cursor: pointer;
  margin-top: 16px;
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 300;
  color: #1f1f1f;
}

.consent-item input {
  width: 12px;
  height: 12px;
  border: none;
  padding: 0;
  margin: 1px 0 0 0;
  flex: 0 0 auto;
}

.consent-item span,
.consent-item .kvkk-link {
  display: block;
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-break: normal;
}

.kvkk-link {
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.35;
  color: #1f1f1f;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.consent-long {
  margin-bottom: 6px;
}

.contact-text {
  margin: 28px 0 8px;
  color: #775536;
  font-size: 20px;
  font-weight: 600;
}

.phone {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 30px;
  font-weight: 600;
  color: #775536;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.brand-bottom {
  width: 230px;
}

.socials {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}

.socials a {
  color: #775536;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kvkk-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.kvkk-modal.is-open {
  display: flex;
}

.kvkk-modal-content {
  width: min(900px, calc(100vw - 40px));
  min-height: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  max-height: 80vh; 
  overflow-y: auto;
}

.kvkk-modal-content p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.kvkk-close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 38px;
  cursor: pointer;
  line-height: 1;
}

.location img {
  width: 100%;
  min-height: 100vh;
  object-fit: cover;
  display: block;
}

.map-wrap {
  display: grid;
  grid-template-columns: 33% 67%;
  min-height: 420px;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.distance-card {
  position: relative;
  z-index: 2;
  background: var(--accent);
  border-radius: 0 0 36px 0;
  padding: 34px 36px;
  color: #252525;
}

.distance-card ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 300;
  width: fit-content;
  max-width: 100%;
}

.distance-card span {
  font-weight: 300;
}

.distance-card li {
  border-bottom: 2px solid rgba(33, 33, 33, 0.72);
  padding: 9px 0 8px;
  width: fit-content;
  max-width: 100%;
}

.distance-card li:last-child {
  border-bottom: none;
}

.distance-card li strong {
  font-weight: 600;
}

.distance-card li span + strong {
  margin-left: 8px;
}

.map-image {
  position: relative;
  z-index: 1;
  width: calc(100% + 36px);
  margin-left: -36px;
  min-height: 420px;
}

.map-image iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

.projects {
  background: #ffffff;
  padding: 82px 52px 78px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.projects h2 {
  margin: 0 0 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  letter-spacing: 8px;
  font-size: 40px;
  font-weight: 500;
  color: #775536;
}

.projects h2::before,
.projects h2::after {
  content: "";
  width: 110px;
  height: 1px;
  background: rgba(119, 85, 54, 0.45);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 18px;
}


.project-grid figure {
  margin: 0;
}

.project-grid figure a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.project-grid figure a:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.project-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.project-grid figcaption {
  text-align: center;
  font-size: 18px;
  margin-top: 6px;
  color: #202020;
  font-weight: 600;
}

@media (max-width: 980px) {
  .page,
  .hero,
  .hero-left,
  .hero-right,
  .location,
  .map-wrap,
  .projects {
    width: 100%;
    max-width: 100vw;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 36px 24px;
  }

  .hero-right {
    max-width: 100%;
    padding: 34px 24px;
  }

  .hero-content {
    width: 100%;
  }

  .brand-top {
    width: 280px;
    margin: 24px 0 30px;
  }

  .small-text {
    font-size: 28px;
  }

  h1 {
    font-size: 50px;
  }

  h1 span {
    font-size: 28px;
  }

  .badge {
    font-size: 18px;
    padding: 8px 12px;
  }

  .hero-list {
    font-size: 16px;
    line-height: 1.4;
  }

  .map-wrap {
    grid-template-columns: 1fr;
  }

  .location img {
    min-height: 50vh;
    height: 50vh;
  }

  .map-image {
    width: 100%;
    margin-left: 0;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects {
    padding: 52px 20px 48px;
  }

  .projects h2 {
    font-size: 28px;
    gap: 16px;
    letter-spacing: 4px;
  }

  .projects h2::before,
  .projects h2::after {
    width: 56px;
  }
}
