/* ============================================================
   Watamu About Us — aligned with home / theme patterns
   ============================================================ */

.w-about-hero,
.w-about-section {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
  border-bottom: 1px solid var(--k-line, #d5e4df);
}

.w-about-section--surface {
  background: var(--k-surface, #eef6f3);
}

.w-about-cta {
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
}

/* ---------- Balanced split columns ---------- */

.w-about-split > [class*="col-"] {
  display: flex;
}

.w-about-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.w-about-split__copy h1,
.w-about-split__copy h2,
.w-about-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading, 'Lato', sans-serif);
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--k-ink, #1a2b28);
}

.w-about-split__copy p,
.w-about-head p,
.w-about-step p,
.w-about-captain__body p,
.w-about-cta__panel p,
.w-about-list li {
  margin: 0 0 0.95rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--k-ink, #1a2b28);
}

.w-about-split__copy p:last-child,
.w-about-step p:last-child,
.w-about-captain__body p:last-child {
  margin-bottom: 0;
}

.w-about-split__media {
  position: relative;
  width: 100%;
  min-height: 240px;
  background: var(--k-surface, #eef6f3);
  overflow: hidden;
}

.w-about-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .w-about-split {
    align-items: stretch;
  }

  .w-about-split__media {
    min-height: 100%;
    flex: 1;
  }
}

.w-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.w-about-head {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.w-about-head p:last-child {
  margin-bottom: 0;
}

/* ---------- Partner steps (like home how-to) ---------- */

.w-about-step {
  height: 100%;
}

.w-about-step__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.w-about-step__num {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  background: color-mix(in srgb, var(--k-primary) 10%, #ffffff 90%);
  color: var(--k-primary-dark, #0a4f44);
  font-family: var(--font-heading, 'Lato', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.w-about-step h3,
.w-about-captain__body h3 {
  margin: 0;
  font-family: var(--font-heading, 'Lato', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--k-ink, #1a2b28);
}

/* ---------- Captains (testimonial-style) ---------- */

.w-about-captain {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
  height: 100%;
  padding: 1.25rem 1.2rem 1.35rem;
  background: #fff;
  border: 1px solid var(--k-line, #d5e4df);
}

.w-about-captain__avatar {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 45%),
    repeating-radial-gradient(circle at 50% 50%, rgba(15, 107, 92, 0.18) 0 1px, transparent 1px 3px),
    color-mix(in srgb, var(--k-primary) 18%, #ffffff 82%);
  border: 1px solid color-mix(in srgb, var(--k-primary) 28%, #ffffff 72%);
  overflow: hidden;
}

.w-about-captain__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--k-surface, #eef6f3);
}

.w-about-captain__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 0;
}

/* ---------- Moments gallery ---------- */

.w-about-moment {
  margin: 0;
  height: 100%;
  background: #fff;
  border: 1px solid var(--k-line, #d5e4df);
  overflow: hidden;
}

.w-about-moment img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--k-surface, #eef6f3);
}

.w-about-moment figcaption {
  padding: 0.7rem 0.85rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--k-primary, #0f6b5c);
}

.w-about-captain__body h3 {
  margin-bottom: 0.35rem;
}

.w-about-captain__meta {
  margin-bottom: 0.75rem !important;
  font-size: 0.92rem !important;
  font-weight: 700;
  color: var(--k-primary, #0f6b5c) !important;
}

.w-about-section--surface .w-about-captain {
  background: #fff;
}

.w-about-list {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  width: 100%;
}

.w-about-list--points {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.w-about-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--k-line, #d5e4df);
}

.w-about-list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.w-about-list strong {
  display: inline;
  font-weight: 700;
  color: var(--k-ink, #1a2b28);
}

.w-about-cta__panel {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--k-primary) 8%, #ffffff 92%);
  border: 1px solid var(--k-line, #d5e4df);
}

.w-about-cta__panel h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading, 'Lato', sans-serif);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--k-ink, #1a2b28);
}

.w-about-cta__panel p {
  max-width: 46rem;
  margin-bottom: 0;
}

.w-about-cta__panel .w-about-actions {
  margin-top: 1.35rem;
}

@media (max-width: 575.98px) {
  .w-about-split__media {
    min-height: 220px;
  }

  .w-about-actions .k-btn {
    width: 100%;
    justify-content: center;
  }
}
