*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #fff;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}

.page {
  width: 100vw; height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1px 1.1fr 1px 0.9fr;
  grid-template-rows: auto 1px 1fr 1px auto;
}

/* divider lines */
.vline { background: #e8e8e8; }
.hline { background: #e8e8e8; grid-column: 1 / -1; }

/* ── TOP BAR ── */
.topbar {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  border-bottom: 1px solid #e8e8e8;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600; color: #111; letter-spacing: 0.04em;
}
.logo em { font-style: italic; font-weight: 300; }
.topbar-right {
  display: flex; align-items: center; gap: 32px;
}
.topbar-link {
  font-size: 12px; font-weight: 300; color: #aaa; letter-spacing: 0.06em;
  text-decoration: none; transition: color 0.2s;
}
.topbar-link:hover { color: #111; }
.topbar-cta {
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: #111; padding: 8px 20px; text-decoration: none;
  transition: opacity 0.2s;
}
.topbar-cta:hover { opacity: 0.7; color: #fff; }

/* ── COL 1: HERO ── */
.col-hero {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-tag {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: #bbb;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.2vw, 64px);
  font-weight: 300; line-height: 1.07; color: #111;
}
.hero-h1 em { font-style: italic; }
.hero-h1 strong { font-weight: 600; display: block; }
.hero-desc {
  font-size: 13px; font-weight: 300; color: #888; line-height: 1.8;
}
.hero-mail {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 15px; color: #bbb;
  text-decoration: none; transition: color 0.2s;
  border-bottom: 1px solid #e8e8e8; padding-bottom: 2px;
}
.hero-mail:hover { color: #111; border-color: #111; }

/* ── COL 2: SERVICES ── */
.col-services {
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 0;
  background: #fafafa;
}
.col-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: #bbb; margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.col-label::before { content: ''; width: 16px; height: 1px; background: #ddd; }
.svc-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #efefef;
  cursor: default;
}
.svc-row:first-of-type { border-top: 1px solid #efefef; }
.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: #111;
}
.svc-num { font-size: 10px; color: #ccc; letter-spacing: 0.08em; }

/* ── COL 3: REFS + STATS ── */
.col-right {
  padding: 44px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: #e8e8e8; border: 1px solid #e8e8e8;
}
.stat {
  background: #fff; padding: 20px 18px;
}
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 300; color: #111; line-height: 1;
  margin-bottom: 4px;
}
.stat-l { font-size: 10px; font-weight: 300; color: #bbb; letter-spacing: 0.1em; text-transform: uppercase; }

.refs-label {
  font-size: 10px; font-weight: 400; letter-spacing: 0.2em;
  text-transform: uppercase; color: #bbb; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.refs-label::before { content: ''; width: 16px; height: 1px; background: #ddd; }
.refs-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

/* ── REF ITEM ── */
.ref-item {
  border: 1px solid #efefef;
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: #fafafa;
  overflow: hidden;
}

/* Logo görseli */
.ref-item img {
  max-width: 75%;
  max-height: 32px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.4);
  transition: filter 0.25s;
}
.ref-item:hover img {
  filter: grayscale(0) opacity(1);
}

/* Görsel yoksa fallback metin */
.ref-item span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 600; color: #bbb;
  letter-spacing: 0.06em; text-align: center; line-height: 1.3;
}

/* ── BOTTOM BAR ── */
.bottombar {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 44px;
  border-top: 1px solid #e8e8e8;
  background: #fafafa;
}
.bot-copy { font-size: 11px; font-weight: 300; color: #ccc; }
.bot-city {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 13px; color: #ccc;
}
.bot-links { display: flex; gap: 20px; }
.bot-links a { font-size: 11px; font-weight: 300; color: #bbb; text-decoration: none; transition: color 0.2s; }
.bot-links a:hover { color: #111; }