﻿:root {
  --bg: #f4efe6;
  --ink: #1f2730;
  --accent: #b24a2d;
  --line: #d8cab7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(178, 74, 45, 0.18), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(31, 39, 48, 0.12), transparent 35%),
    var(--bg);
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(640px, 92vw);
  text-align: center;
  background: rgba(255, 252, 246, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(28px, 6vw, 48px);
  box-shadow: 0 18px 44px rgba(31, 39, 48, 0.14);
  overflow: hidden;
}

.site-visual {
  margin-bottom: 18px;
}

.vector-scene {
  width: min(560px, 100%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.scene-lines {
  filter: drop-shadow(0 8px 14px rgba(31, 39, 48, 0.12));
}

.stroke {
  fill: none;
  stroke: #27313c;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2.7s ease forwards;
}

.stroke.delayed {
  animation-delay: 220ms;
}

.stroke.delayed-2 {
  animation-delay: 430ms;
}

.building-fill {
  opacity: 0;
  animation: fadeBuilding 1s ease forwards;
  animation-delay: 520ms;
}

.cloud {
  fill: rgba(255, 255, 255, 0.78);
}

.cloud-a {
  transform: translate(470px, 34px);
  animation: cloudMoveA 8s ease-in-out infinite;
}

.cloud-b {
  transform: translate(332px, 52px);
  animation: cloudMoveB 10s ease-in-out infinite;
}

.tag {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

h1 {
  margin: 12px 0;
  font-size: clamp(1.8rem, 4.8vw, 3rem);
  line-height: 1.15;
}

p {
  margin: 0;
  color: #4f5a65;
}

.mail-link {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  font-weight: 700;
  color: var(--accent);
  overflow-wrap: anywhere;
}

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

.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.quick-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(31, 39, 48, 0.1);
}

.map-wrap {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
}

.map-wrap iframe {
  width: 100%;
  height: 210px;
  border: 0;
  display: block;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeBuilding {
  to {
    opacity: 0.85;
  }
}

@keyframes cloudMoveA {
  0% {
    transform: translate(470px, 34px);
  }
  50% {
    transform: translate(456px, 30px);
  }
  100% {
    transform: translate(470px, 34px);
  }
}

@keyframes cloudMoveB {
  0% {
    transform: translate(332px, 52px);
  }
  50% {
    transform: translate(348px, 56px);
  }
  100% {
    transform: translate(332px, 52px);
  }
}

@media (max-width: 560px) {
  .coming-soon {
    padding: 14px;
  }

  .card {
    width: 100%;
    border-radius: 14px;
    padding: 18px;
  }

  .site-visual {
    margin-bottom: 8px;
  }

  .vector-scene {
    width: 100%;
  }

  .stroke {
    stroke-width: 3.2;
  }

  h1 {
    margin: 10px 0;
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .mail-link {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .quick-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quick-btn {
    min-height: 42px;
    padding: 10px;
    font-size: 0.92rem;
  }

  .map-wrap iframe {
    height: 180px;
  }
}

@media (max-width: 380px) {
  .card {
    padding: 14px;
  }

  .quick-btn {
    font-size: 0.88rem;
  }

  .map-wrap iframe {
    height: 165px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stroke,
  .building-fill,
  .cloud-a,
  .cloud-b {
    animation: none;
  }

  .stroke {
    stroke-dashoffset: 0;
  }

  .building-fill {
    opacity: 0.85;
  }

  .vector-scene animate,
  .vector-scene animateTransform {
    display: none;
  }
}
