:root {
  --ink: #f7f1e5;
  --muted: #b8b2a6;
  --bg: #11120f;
  --panel: #1a1b17;
  --line: rgba(255, 255, 255, 0.14);
  --red: #d8312a;
  --red-dark: #9b1f1a;
  --gold: #f0c24b;
  --green: #6ea56a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(17, 18, 15, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #11120f;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a,
.mobile-nav a {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 42px;
  padding: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  cursor: pointer;
}

.lang-toggle span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 32px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

html[lang="tr"] [data-lang-option="tr"],
html[lang="en"] [data-lang-option="en"] {
  color: #11120f;
  background: var(--gold);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
}

.header-cta,
.primary-button {
  color: #fff;
  background: var(--red);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 70px) 32px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(0.98);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 18, 15, 0.94) 0%, rgba(17, 18, 15, 0.7) 44%, rgba(17, 18, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 18, 15, 0.9) 0%, rgba(17, 18, 15, 0.12) 46%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-bottom: 118px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(68px, 13vw, 156px);
  line-height: 0.82;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.9;
}

h3 {
  margin-bottom: 8px;
  font-size: 31px;
  line-height: 1;
}

.hero-copy {
  max-width: 590px;
  color: #e7e0d2;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions a {
  min-width: 176px;
}

.hero-stats {
  position: absolute;
  left: clamp(18px, 5vw, 70px);
  right: clamp(18px, 5vw, 70px);
  bottom: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(17, 18, 15, 0.72);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 4px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 96px clamp(18px, 5vw, 70px);
}

.intro-section {
  background: var(--bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.intro-copy p,
.section-heading p,
.split-content p,
.visit-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.areas-section,
.gallery-section {
  background: #151611;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 470px);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

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

.areas-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
}

.areas-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.areas-grid h3,
.areas-grid p {
  padding: 0 20px;
}

.areas-grid h3 {
  margin-top: 20px;
}

.areas-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  min-height: 720px;
  background: #10110e;
}

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

.split-content {
  align-self: center;
  padding: clamp(48px, 6vw, 86px);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: #ded6c8;
  line-height: 1.55;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: var(--green);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
}

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

.gallery-grid img:nth-child(4) {
  grid-column: span 2;
}

.visit-section {
  padding: 96px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(216, 49, 42, 0.3), rgba(240, 194, 75, 0.12)),
    #12130f;
}

.visit-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: 44px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
  background: rgba(17, 18, 15, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.contact-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 18px;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    grid-column: 1 / -1;
    display: none;
    grid-template-columns: 1fr;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .mobile-nav {
    display: grid;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 18, 15, 0.98) 0%, rgba(17, 18, 15, 0.72) 56%, rgba(17, 18, 15, 0.3) 100%);
  }

  .hero-content {
    padding-bottom: 248px;
  }

  .hero-stats,
  .intro-grid,
  .section-heading,
  .areas-grid,
  .split-section,
  .visit-card {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  .split-section {
    min-height: 0;
  }

  .split-image img {
    max-height: 520px;
  }

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

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    font-size: 10px;
  }

  .lang-toggle span {
    width: 30px;
  }

  .hero {
    min-height: 820px;
    padding: 116px 16px 20px;
  }

  .hero-content {
    padding-bottom: 270px;
  }

  .hero-stats {
    left: 16px;
    right: 16px;
    bottom: 20px;
  }

  .hero-stats div {
    padding: 16px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section,
  .visit-section {
    padding: 68px 16px;
  }

  .split-content {
    padding: 54px 16px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
