:root {
  --coming-bg: #f6f2ea;
  --coming-ink: #1f2528;
  --coming-muted: #6f7477;
  --coming-line: rgba(31, 37, 40, 0.14);
  --coming-gold: #b89b5e;
  --coming-deep: #172326;
  --coming-white: #ffffff;
  --coming-font-body: "Source Sans 3", Arial, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--coming-ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 155, 94, 0.16), transparent 28%),
    linear-gradient(135deg, #fbf8f1 0%, var(--coming-bg) 48%, #e9e1d2 100%);
  font-family: var(--coming-font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.coming-page {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 56px 0;
  align-items: center;
}

.coming-card,
.coming-info {
  border: 1px solid var(--coming-line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(31, 37, 40, 0.08);
}

.coming-card {
  padding: clamp(28px, 5vw, 64px);
}

.coming-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.coming-brand img {
  width: 76px;
  height: auto;
  object-fit: contain;
}

.coming-brand span {
  max-width: 360px;
  color: var(--coming-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coming-kicker {
  margin: 0 0 14px;
  color: var(--coming-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coming-content h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--coming-font-body);
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.coming-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--coming-muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.72;
}

.coming-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.coming-button {
  display: flex;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid var(--coming-line);
  flex-direction: column;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.coming-button:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 155, 94, 0.56);
}

.coming-button span {
  margin-bottom: 4px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-button strong {
  font-family: var(--coming-font-body);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

.coming-button--primary {
  color: var(--coming-white);
  border-color: var(--coming-deep);
  background: var(--coming-deep);
}

.coming-button--primary span {
  color: rgba(255, 255, 255, 0.62);
}

.coming-button--light {
  color: var(--coming-deep);
  background: var(--coming-white);
}

.coming-button--light span {
  color: var(--coming-gold);
}

.coming-address {
  display: grid;
  gap: 6px;
  max-width: 540px;
  margin-top: 30px;
  color: var(--coming-muted);
  font-style: normal;
  line-height: 1.6;
}

.coming-address span {
  color: var(--coming-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-info {
  min-height: 420px;
  padding: 34px;
  color: var(--coming-white);
  background:
    linear-gradient(rgba(23, 35, 38, 0.84), rgba(23, 35, 38, 0.84)),
    url("../img/uploads/home/ana-sayfa-hero-20260623-133257-69dc7a.webp") center / cover;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.coming-info span {
  display: block;
  margin-bottom: 12px;
  color: var(--coming-gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.coming-info strong {
  display: block;
  max-width: 220px;
  font-family: var(--coming-font-body);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
}

.coming-info p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.coming-mobile-actions {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 78px;
  }

  .coming-page {
    display: block;
    width: min(100% - 28px, 620px);
    min-height: auto;
    padding: 18px 0 28px;
  }

  .coming-card {
    padding: 26px 20px 24px;
  }

  .coming-brand {
    gap: 14px;
    margin-bottom: 46px;
  }

  .coming-brand img {
    width: 62px;
  }

  .coming-brand span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .coming-content h1 {
    font-size: clamp(1.95rem, 8vw, 2.75rem);
    line-height: 1.12;
  }

  .coming-actions {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .coming-button {
    min-height: 82px;
  }

  .coming-info {
    min-height: 260px;
    margin-top: 14px;
    padding: 24px;
  }

  .coming-info strong {
    font-size: 1.35rem;
  }

  .coming-mobile-actions {
    position: fixed;
    z-index: 20;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(23, 35, 38, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
  }

  .coming-mobile-actions a {
    padding: 15px 8px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .coming-mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 420px) {
  .coming-page {
    width: calc(100% - 20px);
  }

  .coming-card {
    padding: 22px 16px;
  }

  .coming-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }
}
