/* Maintenance — Türkeş */
:root {
  --ink: #0c1222;
  --navy: #1a2744;
  --cream: #f4efe6;
  --copper: #b08a5a;
  --copper-soft: #c9a87a;
  --muted: rgba(244, 239, 230, 0.68);
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(176, 138, 90, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 80%, rgba(26, 39, 68, 0.9), transparent 50%),
    linear-gradient(165deg, #0c1222 0%, #151d33 45%, #1a2744 100%);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(100%, 36rem);
  text-align: center;
}

.brand {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.35rem;
  line-height: 1.05;
}

.brand-sub {
  margin: 0 0 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-soft);
  font-weight: 600;
}

.rule {
  width: 3rem;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 2rem;
  opacity: 0.85;
}

.status {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-soft);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lead {
  margin: 0 auto 2.25rem;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--light {
  background: var(--cream);
  color: var(--ink);
}

.btn--light:hover {
  background: #fff;
  color: var(--ink);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(244, 239, 230, 0.22);
}

.btn--ghost:hover {
  border-color: var(--copper-soft);
  color: var(--copper-soft);
}

.meta {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.meta__line {
  margin: 0 0 0.45rem;
}

.meta a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(176, 138, 90, 0.45);
}

.meta a:hover {
  color: var(--copper-soft);
}

.meta a.btn {
  border-bottom: 1px solid rgba(244, 239, 230, 0.22);
}

.meta a.btn:hover {
  border-color: var(--copper-soft);
}

.map {
  margin: 1.15rem 0 1rem;
  border-radius: 0.375rem;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.14);
  aspect-ratio: 16 / 10;
  background: rgba(12, 18, 34, 0.55);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}

.meta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.btn--sm {
  min-height: 42px;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .shell {
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
