:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --background: #f3f6fb;
  --text: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.12);
  --blue: #175cd3;
  --blue-soft: #e9f1ff;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96) 0 12rem, transparent 35rem),
    linear-gradient(135deg, #f8faff 0%, var(--background) 55%, #edf2fa 100%);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(16, 24, 40, 0.12) 0.65px, transparent 0.65px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at center, black, transparent 68%);
  opacity: 0.24;
  content: "";
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.5rem, 4vw, 3.5rem) clamp(1.25rem, 5vw, 5rem);
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.masthead { justify-content: flex-end; }

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.availability span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #12b76a;
  box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.1);
}

.hero {
  display: flex;
  width: min(100%, 70rem);
  margin: auto;
  padding: clamp(3rem, 8vh, 6rem) 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: enter 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.75rem, 10vw, 8.75rem);
  font-weight: 540;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.summary {
  max-width: 34rem;
  margin: clamp(1.5rem, 4vw, 2.2rem) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
}

.contact-list {
  display: flex;
  width: min(100%, 46rem);
  margin-top: clamp(2rem, 5vw, 3.25rem);
  gap: 0.9rem;
  font-style: normal;
  text-align: left;
}

.contact-item {
  display: flex;
  min-width: 0;
  padding: 0.9rem 1rem;
  flex: 1;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0.6rem 1.8rem rgba(16, 24, 40, 0.05);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-item:has(.contact-value:hover),
.contact-item:has(.contact-value:focus-visible) {
  border-color: rgba(23, 92, 211, 0.25);
  box-shadow: 0 0.85rem 2rem rgba(23, 92, 211, 0.08);
  transform: translateY(-2px);
}

.contact-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.85rem;
  color: var(--blue);
  background: var(--blue-soft);
}

.contact-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-item-whatsapp .contact-icon {
  color: #07884f;
  background: #e7f8ef;
}

.contact-copy { min-width: 0; }

.contact-label {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-value {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 0.35rem;
  color: var(--text);
  overflow-wrap: anywhere;
  font-size: clamp(0.88rem, 2vw, 1rem);
  font-weight: 650;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.contact-value > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8em;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-value:hover,
.contact-value:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.contact-value:hover > span,
.contact-value:focus-visible > span {
  color: currentColor;
  transform: translate(0.1rem, -0.1rem);
}

.contact-value:focus-visible {
  outline: 3px solid rgba(23, 92, 211, 0.18);
  outline-offset: 4px;
  border-radius: 0.15rem;
}

@keyframes enter {
  from { opacity: 0; transform: translateY(0.75rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 40rem) {
  .availability { font-size: 0; }
  .availability::after { font-size: 0.78rem; content: "Available"; }
  .hero { padding-block: 2.75rem; }
  h1 { font-size: clamp(3.5rem, 18vw, 5.2rem); }
  .contact-list { gap: 0.7rem; }
}

@media (max-width: 36rem) {
  .contact-list {
    width: 100%;
    flex-direction: column;
  }
  .contact-item {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
