/* PARKELİT — yapım aşaması */
:root {
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --muted: #6b6b6b;
  --paper: #fafafa;
  --line: rgba(0, 0, 0, 0.08);
  --accent: #2c2c2c;
  --radius: 12px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html {
  height: 100%;
  overflow: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: var(--font);
  color: var(--ink-soft);
  background: var(--paper);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 0, 0, 0.04), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 45%, #f3f3f3 100%);
}

.page {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vmin, 1.25rem) clamp(1rem, 4vw, 1.5rem);
  gap: clamp(0.5rem, 2vmin, 1.25rem);
}

.brand {
  margin: 0;
  flex-shrink: 0;
}

.brand__logo {
  display: block;
  height: auto;
  width: min(380px, 88vw);
  max-height: clamp(52px, 12vmin, 72px);
  object-fit: contain;
}

.hero {
  text-align: center;
  max-width: 34rem;
  margin: 0;
  flex-shrink: 1;
  min-height: 0;
}

.hero__badge {
  display: inline-block;
  font-size: clamp(0.625rem, 1.8vmin, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(0.25rem, 1vmin, 0.5rem);
}

.hero__title {
  margin: 0 0 clamp(0.25rem, 1vmin, 0.5rem);
  font-size: clamp(1.25rem, 4.2vmin, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.hero__lead {
  margin: 0;
  font-size: clamp(0.8125rem, 2.4vmin, 0.9375rem);
  line-height: 1.45;
  color: var(--muted);
}

.contact {
  width: 100%;
  max-width: 26rem;
  flex-shrink: 1;
  min-height: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(0.75rem, 2.2vmin, 1.25rem);
}

.contact__heading {
  margin: 0 0 clamp(0.5rem, 1.5vmin, 0.875rem);
  font-size: clamp(0.6875rem, 1.8vmin, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 1.2vmin, 0.75rem);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.5rem, 1.5vmin, 0.75rem);
}

.contact__icon {
  flex-shrink: 0;
  width: clamp(32px, 7vmin, 36px);
  height: clamp(32px, 7vmin, 36px);
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact__icon svg {
  width: clamp(16px, 3.5vmin, 18px);
  height: clamp(16px, 3.5vmin, 18px);
}

.contact__label {
  display: block;
  font-size: clamp(0.5625rem, 1.5vmin, 0.625rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.125rem;
}

.contact__value {
  margin: 0;
  font-size: clamp(0.8125rem, 2.2vmin, 0.9375rem);
  line-height: 1.35;
  color: var(--ink-soft);
}

.contact__value a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact__value a:hover {
  color: var(--accent);
  border-bottom-color: currentColor;
}

.footer {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  text-align: center;
  font-size: clamp(0.6875rem, 1.8vmin, 0.75rem);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .brand {
    animation: fade-up 0.7s ease-out both;
  }

  .hero {
    animation: fade-up 0.7s ease-out 0.08s both;
  }

  .contact {
    animation: fade-up 0.7s ease-out 0.16s both;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
