/* Saguaro Maids — coming soon */
:root {
  --sand: #f6efe4;
  --sand-deep: #e8dcc8;
  --clay: #c47a4a;
  --terracotta: #b95c38;
  --saguaro: #2f5d3a;
  --saguaro-deep: #1e3d28;
  --dusk: #3a2a28;
  --ink: #2a221f;
  --muted: #6b5b52;
  --glow: #f0b27a;
}

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

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

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f2c78a 0%, #e89b62 38%, #c46a3e 72%, #7a3e2c 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 1.5rem;
  overflow-x: hidden;
  position: relative;
}

/* Decorative desert backdrop */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sun {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff4d6 0%, var(--glow) 45%, transparent 70%);
  opacity: 0.85;
  filter: blur(2px);
}

.ridge {
  position: absolute;
  left: -5%;
  right: -5%;
  height: 42%;
  bottom: 0;
}

.ridge-back {
  bottom: 8%;
  height: 38%;
  background: #a85a3a;
  clip-path: polygon(0% 70%, 12% 48%, 28% 62%, 45% 30%, 62% 55%, 78% 28%, 100% 50%, 100% 100%, 0% 100%);
  opacity: 0.55;
}

.ridge-mid {
  bottom: 0;
  height: 34%;
  background: #8b4530;
  clip-path: polygon(0% 55%, 18% 35%, 34% 50%, 52% 22%, 70% 45%, 88% 25%, 100% 42%, 100% 100%, 0% 100%);
  opacity: 0.75;
}

.ridge-front {
  bottom: 0;
  height: 22%;
  background: #5c2e22;
  clip-path: polygon(0% 40%, 15% 60%, 30% 35%, 48% 55%, 65% 30%, 82% 50%, 100% 28%, 100% 100%, 0% 100%);
}

/* Simple saguaro silhouettes */
.cactus {
  position: absolute;
  bottom: 14%;
  width: 28px;
  height: 110px;
  background: var(--saguaro-deep);
  border-radius: 14px 14px 4px 4px;
  opacity: 0.85;
}

.cactus::before,
.cactus::after {
  content: "";
  position: absolute;
  background: var(--saguaro-deep);
  border-radius: 12px;
}

.cactus::before {
  width: 16px;
  height: 42px;
  left: -18px;
  top: 28px;
  border-radius: 12px 12px 12px 4px;
  box-shadow: 8px 18px 0 0 var(--saguaro-deep);
  transform: rotate(-8deg);
}

.cactus::after {
  width: 16px;
  height: 36px;
  right: -16px;
  top: 40px;
  border-radius: 12px 12px 4px 12px;
  box-shadow: -6px 14px 0 0 var(--saguaro-deep);
  transform: rotate(6deg);
}

.cactus-l { left: 8%; height: 130px; transform: scale(0.9); opacity: 0.7; }
.cactus-r { right: 10%; height: 100px; transform: scale(0.75); opacity: 0.65; bottom: 16%; }

/* Card */
.card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  background: color-mix(in srgb, var(--sand) 92%, white);
  border: 1px solid color-mix(in srgb, var(--sand-deep) 80%, var(--clay));
  border-radius: 24px;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 24px 60px rgba(58, 30, 20, 0.28),
    0 4px 12px rgba(58, 30, 20, 0.12);
  backdrop-filter: blur(6px);
  animation: rise 0.9s ease-out both;
}

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

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 3.4rem);
  line-height: 1.05;
  color: var(--saguaro-deep);
  letter-spacing: 0.01em;
}

.tagline {
  margin-top: 0.55rem;
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.rule {
  width: 56px;
  height: 2px;
  margin: 1.4rem auto;
  background: linear-gradient(90deg, transparent, var(--clay), transparent);
  border-radius: 2px;
}

.lede {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--dusk);
  font-weight: 400;
  max-width: 36ch;
  margin: 0 auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--saguaro) 12%, var(--sand));
  color: var(--saguaro-deep);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saguaro);
  box-shadow: 0 0 0 0 rgba(47, 93, 58, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 93, 58, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(47, 93, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 93, 58, 0); }
}

.contact {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact a {
  color: var(--terracotta);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--terracotta) 40%, transparent);
  transition: border-color 0.2s, color 0.2s;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--saguaro-deep);
  border-bottom-color: var(--saguaro);
}

footer {
  position: relative;
  z-index: 1;
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(255, 244, 230, 0.75);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .cactus { display: none; }
  .card { border-radius: 18px; }
}
