/* ============ Contact section ============ */
.contact-cta {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg-warm) 100%);
  overflow: hidden;
}
.contact-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
}
.contact-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.contact-copy h2 em { font-style: italic; color: #c75a87; font-weight: 400; }
.contact-copy p {
  margin-top: 24px;
  max-width: 480px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 26px 14px 14px;
  border-radius: 999px;
  box-shadow: 0 16px 40px -12px rgba(31,26,22,0.45);
  transition: transform .25s, box-shadow .25s, background .25s;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -12px rgba(37, 211, 102, 0.55);
  background: #1a1612;
}
.contact-btn-ic {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-btn-text {
  display: flex; flex-direction: column;
  line-height: 1.15;
}
.contact-btn-text .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,246,238,0.7);
  font-weight: 500;
}
.contact-btn-text .num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.01em;
}
.contact-btn-arrow {
  margin-left: 6px;
  transition: transform .25s;
}
.contact-btn:hover .contact-btn-arrow { transform: translateX(4px); }

.contact-meta {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
}
.contact-meta-item {
  display: flex; gap: 12px;
  color: var(--ink);
}
.contact-meta-item svg { color: #c75a87; flex-shrink: 0; margin-top: 2px; }
.contact-meta-item .t { font-size: 14px; font-weight: 500; line-height: 1.2; }
.contact-meta-item .d { font-size: 12px; color: var(--ink-soft); margin-top: 2px; line-height: 1.3; }

/* Phone mockup */
.contact-phone {
  display: flex; justify-content: center;
  perspective: 1500px;
}
.phone {
  width: 320px; height: 580px;
  background: linear-gradient(160deg, #2a2520 0%, #0d0a07 100%);
  border-radius: 42px;
  padding: 14px;
  box-shadow:
    0 50px 100px -30px rgba(31, 26, 22, 0.55),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  transform: rotate(-4deg) rotateY(8deg);
  transition: transform .6s ease;
  position: relative;
}
.contact-phone:hover .phone { transform: rotate(-2deg) rotateY(4deg); }
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0d0a07;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #ece5dc;
  background-image:
    radial-gradient(rgba(31,26,22,0.04) 1px, transparent 1px),
    radial-gradient(rgba(31,26,22,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
  border-radius: 30px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.chat-header {
  display: flex; align-items: center; gap: 12px;
  padding: 50px 16px 14px;
  background: linear-gradient(180deg, #075E54 0%, #0a7a6e 100%);
  color: white;
}
.chat-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: #c75a87; color: white;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
}
.chat-name { font-size: 14px; font-weight: 600; line-height: 1.1; }
.chat-status { font-size: 11px; opacity: 0.8; margin-top: 2px; }
.chat-body {
  flex: 1;
  padding: 14px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.bubble {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.35;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(8px);
  animation: bubble-in .5s cubic-bezier(.2,.7,.2,1) forwards;
}
.bubble.in {
  align-self: flex-end;
  background: #DCF8C6;
  border-bottom-right-radius: 3px;
}
.bubble.out {
  align-self: flex-start;
  background: white;
  border-bottom-left-radius: 3px;
}
.bubble:nth-child(1) { animation-delay: 0.3s; }
.bubble:nth-child(2) { animation-delay: 1.0s; }
.bubble:nth-child(3) { animation-delay: 1.8s; }
.bubble:nth-child(4) { animation-delay: 2.6s; }
@keyframes bubble-in {
  to { opacity: 1; transform: translateY(0); }
}
.typing {
  align-self: flex-start;
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
  border-bottom-left-radius: 3px;
  display: flex; gap: 4px;
  opacity: 0;
  animation: bubble-in .4s 3.4s forwards;
}
.typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #999;
  animation: typing-dot 1.4s ease-in-out infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 980px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 60px; }
  .contact-meta { grid-template-columns: 1fr 1fr; }
  .phone { transform: rotate(-2deg); }
}
@media (max-width: 600px) {
  .contact-meta { grid-template-columns: 1fr; }
  .contact-btn { padding: 12px 20px 12px 12px; }
  .contact-btn-text .num { font-size: 22px; }
  .phone { width: 280px; height: 510px; }
}
