/* ============================================
   arquitectoibiza.com — Coming soon v2
   Mobile-first, mediterráneo, profesional
   Copy y SEO optimizados
   ============================================ */

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

:root {
  --ink: #0F3A5F;
  --ink-soft: #4A5560;
  --ink-mute: #8B95A3;
  --line: #E6E0D3;
  --bg: #F4EDE0;
  --card: #FFFFFF;
  --accent: #C75D3F;
  --accent-2: #1A6E5C;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(15, 58, 95, 0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  /* Fondo sutil: gradientes que evocan mar/cielo mediterráneo.
     Sin imagen externa -> 0 KB, carga instantánea. */
  background-image:
    radial-gradient(at 15% 0%, rgba(199, 120, 60, 0.08) 0%, transparent 55%),
    radial-gradient(at 85% 100%, rgba(15, 58, 95, 0.07) 0%, transparent 55%);
  background-attachment: fixed;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.card {
  max-width: 680px;
  width: 100%;
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

/* ============== BADGE: en construcción ============== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge--construction {
  background: rgba(199, 93, 63, 0.10);
  color: var(--accent);
}

/* ============== H1 (CRUCIAL SEO) ============== */
.headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 5.4vw, 38px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

/* ============== LEAD / INTRO ============== */
.lead {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 58ch;
  margin-bottom: 40px;
}

/* ============== SERVICES (H2) ============== */
.services {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.service {
  padding: 16px 18px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.service:last-child { margin-bottom: 0; }
.service:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(15, 58, 95, 0.05);
}
.service h3 {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.service p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============== CONTACT (H3) ============== */
.contact {
  margin-bottom: 32px;
  padding: 26px 24px;
  background: var(--ink);
  color: white;
  border-radius: 14px;
  background-image: radial-gradient(at 80% 20%, rgba(199, 93, 63, 0.20) 0%, transparent 60%);
}
.contact-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact-lead {
  font-size: 13.5px;
  opacity: 0.78;
  margin-bottom: 18px;
  line-height: 1.55;
  max-width: 50ch;
}
.contact-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  border: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 14px;
}
.contact-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transform: translateY(-1px);
}
.contact-icon {
  font-size: 19px;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.65;
  font-weight: 600;
  margin-bottom: 1px;
}
.contact-value {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  word-break: break-all;
}
.location {
  font-size: 13px;
  opacity: 0.75;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  margin-top: 4px;
}

/* ============== FOOTER ============== */
.footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.footer p {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 480px) {
  .container { padding: 16px 12px; }
  .card { padding: 30px 22px; border-radius: 14px; }
  .headline { font-size: 24px; }
  .lead { font-size: 15px; }
  .service { padding: 14px 16px; }
  .contact { padding: 22px 18px; }
  .contact-cta { padding: 12px; }
}
