/* Family Taxi — placeholder site */
:root {
  --teal: #0b6e6e;
  --teal-deep: #085858;
  --coral: #e07a5f;
  --coral-soft: #f0a08c;
  --ground: #f7f5f2;
  --charcoal: #1c2b2b;
  --muted: #5a6b6b;
  --white: #ffffff;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 1rem;
  --shadow-soft: 0 18px 50px rgba(11, 110, 110, 0.12);
  --max: 68rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ground);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body.is-ready {
  opacity: 1;
  transform: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--teal-deep);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 1.25rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 2px;
}

a.brand:hover {
  color: var(--white);
  opacity: 0.85;
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.brand--dark {
  color: var(--teal);
}

a.brand--dark:hover {
  color: var(--teal);
  opacity: 0.85;
  text-decoration-color: rgba(11, 110, 110, 0.55);
}

.nav-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, text-decoration-color 0.2s ease;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1.5px;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.85;
  text-decoration-color: rgba(255, 255, 255, 0.75);
}

.nav-link--dark {
  color: var(--teal);
}

.nav-link--dark:hover {
  color: var(--teal);
  opacity: 0.85;
  text-decoration-color: rgba(11, 110, 110, 0.55);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(224, 122, 95, 0.22), transparent 55%),
    linear-gradient(180deg, #0c7474 0%, #0b6e6e 55%, #0a6363 100%);
  padding-bottom: 2rem;
}

.hero-stage {
  position: relative;
  margin-top: 0.75rem;
  min-height: 11rem;
}

.hero-visual {
  position: absolute;
  inset: 0 0 3.5rem;
  pointer-events: none;
}

.hero-skyline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 28px,
    rgba(255, 255, 255, 0.04) 28px 30px
  );
}

.hero-road {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 42%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.hero-path {
  position: absolute;
  left: 8%;
  right: 18%;
  bottom: 55%;
  height: 2px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.55) 0 10px,
    transparent 10px 18px
  );
  opacity: 0.7;
}

.hero-pin {
  position: absolute;
  right: 16%;
  bottom: 58%;
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(224, 122, 95, 0.45);
  animation: pin-pulse 2.4s ease-in-out infinite;
}

.hero-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--white);
}

.hero-car {
  position: absolute;
  left: 10%;
  bottom: 48%;
  width: 42px;
  height: 18px;
  border-radius: 6px 10px 4px 4px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  animation: car-drive 7s ease-in-out infinite;
}

.hero-car::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -8px;
  width: 18px;
  height: 10px;
  border-radius: 4px 6px 0 0;
  background: rgba(255, 255, 255, 0.85);
}

.hero-car::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: -4px;
  height: 6px;
  background:
    radial-gradient(circle at 20% 50%, #1c2b2b 0 3px, transparent 3.5px),
    radial-gradient(circle at 80% 50%, #1c2b2b 0 3px, transparent 3.5px);
}

@keyframes car-drive {
  0% { left: 10%; opacity: 0; }
  8% { opacity: 1; }
  78% { left: 68%; opacity: 1; }
  92%, 100% { left: 72%; opacity: 0; }
}

@keyframes pin-pulse {
  0%, 100% { transform: rotate(-45deg) scale(1); }
  50% { transform: rotate(-45deg) scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 3rem 0 0.5rem;
}

.hero-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.85rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.96);
}

.hero-support {
  margin: 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: default;
  text-decoration: none;
}

.btn-coming {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(224, 122, 95, 0.35);
}

.btn-coming span {
  opacity: 0.9;
  font-weight: 500;
  font-size: 0.92em;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.65rem;
  color: var(--teal-deep);
}

.section-lead {
  margin: 0 0 2.25rem;
  max-width: 36rem;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.step {
  padding: 0;
  transition: transform 0.25s ease;
}

.step:hover {
  transform: translateY(-3px);
}

.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 0.4rem;
}

.step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--charcoal);
}

.step p {
  margin: 0;
  color: var(--muted);
}

.families {
  background:
    linear-gradient(180deg, rgba(11, 110, 110, 0.06), transparent 40%),
    var(--ground);
}

.families-copy {
  max-width: 40rem;
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(11, 110, 110, 0.12);
  padding: 1.75rem 0 2.25rem;
}

.footer-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-main {
  padding: 6.5rem 0 3rem;
  min-height: 70svh;
}

.page-header-bar {
  background: var(--ground);
  border-bottom: 1px solid rgba(11, 110, 110, 0.1);
}

.page-header-bar .site-header {
  position: relative;
}

.privacy-note {
  max-width: 40rem;
  color: var(--muted);
}

.privacy-body {
  min-height: 12rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { transition: none; opacity: 1; transform: none; }
  .hero-car,
  .hero-pin { animation: none; }
  .step:hover { transform: none; }
}
