@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');

/* ============================================================
   SPLIT SECTION  —  "LET'S TALK" scroll-pin animation
   Desktop: unchanged
   Mobile: static layout, no gaps, all content visible
   ============================================================ */

.split-section {
  position: relative;
  background: #f5efe4;
}

/* ── DESKTOP: pinned scroll animation ── */
@media (min-width: 769px) {
  .split-section {
    height: 200vh;
  }

  .split-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .content {
    position: absolute;
    top: 100vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
    color: #353535;
  }
}

/* ── MOBILE: flat stacked layout, no pinning ── */
@media (max-width: 768px) {
  .split-section {
    height: auto;
    padding: 60px 20px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .split-wrapper {
    position: static;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
  }

  .content {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: center;
    color: #353535;
  }
}

/* ── Typography (shared) ── */
.split-text {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.02em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(72px, 15vw, 220px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #353535;
}

.left,
.right {
  display: inline-block;
  will-change: transform;
}

.content h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.content p {
  margin: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(53, 53, 53, 0.9);
}

@media (max-width: 768px) {
  .content p {
    font-size: 12px;
    letter-spacing: 0.035em;
  }
}

/* ── Button (shared) ── */
.contact-btn {
  margin-top: 28px;
  padding: 17px 38px;
  border: 1px solid rgba(53, 53, 53, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, #313f2c 0%, #313f2c 100%);
  color: #fffdf8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 12px 28px rgba(0,0,0,0.12);
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(180deg, #5f5b56 0%, #3d3a37 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 18px 36px rgba(0,0,0,0.18);
}

.contact-btn:active  { transform: translateY(0); }

.contact-btn:focus-visible {
  outline: 2px solid #353535;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .contact-btn {
    margin-top: 24px;
    padding: 15px 32px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }
}